/* ════════════════════════════════════════════════════
   HOGAI MEGA MENU — styles
   ════════════════════════════════════════════════════ */

/* ── Tokens ───────────────────────────────────────── */
:root {
    --hm-font:         'Inter', system-ui, -apple-system, sans-serif;
    --hm-black:        #1a1a1a;
    --hm-gray-dark:    #333;
    --hm-gray:         #666;
    --hm-gray-light:   #999;
    --hm-border:       #e8e8e8;
    --hm-bg:           #fff;
    --hm-accent:       #C85A2A;
    --hm-accent-light: #FDF0EB;
    --hm-highlight:    #C85A2A;
    --hm-nav-h:        64px;
    --hm-delivery-h:   36px;
    --hm-z-nav:        1000;
    --hm-z-dropdown:   999;
    --hm-z-mobile:     1100;
    --hm-z-overlay:    1090;
    --hm-radius:       6px;
    --hm-shadow:       0 8px 32px rgba(0,0,0,.10);
    --hm-transition:   220ms cubic-bezier(.4,0,.2,1);
}

/* ── Reset scoped ─────────────────────────────────── */
.hm-header *, .hm-mobile-drawer * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.hm-header ul { list-style: none; }
.hm-header a, .hm-mobile-drawer a { text-decoration: none; color: inherit; }

/* ════════════════════════════════════════════════════
   DELIVERY BAR
════════════════════════════════════════════════════ */
.hm-delivery-bar {
    background: #1a1a1a;
    color: #fff;
    font-size: 12px;
    letter-spacing: .04em;
    text-align: center;
    padding: 0 16px;
    height: var(--hm-delivery-h);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ════════════════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════════════════ */
.hm-header {
    position: sticky;
    top: 0;
    z-index: var(--hm-z-nav);
    font-family: var(--hm-font);
    background: var(--hm-bg);
    /* border-bottom: 1px solid var(--hm-border); */
}

.hm-nav {
    height: var(--hm-nav-h);
    position: relative;
    border-bottom: 1px solid var(--hm-border);
}

.hm-nav__inner {
    /* max-width: 1280px; */
    margin: 0 auto;
    height: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

/* Logo */
.hm-logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--hm-black);
    margin-right: 40px;
    flex-shrink: 0;
}

/* Nav list */
.hm-nav__list {
    display: flex;
    align-items: center;
    height: 100%;
    flex: 1;
    /* position: relative; */
}

@media(min-width:1600px){
    .hm-nav__list{
        position: relative;
    }
}

.hm-nav__item {
    height: 100%;
    display: flex;
    align-items: center;
    /* position: relative; */
}

.hm-nav__link {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .08em;
    color: var(--hm-black);
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
    border-bottom: 2px solid transparent;
    transition: border-color var(--hm-transition), color var(--hm-transition);
    white-space: nowrap;
}

.hm-nav__item.hm-has-dropdown:hover > .hm-nav__link,
.hm-nav__item.hm-has-dropdown.is-open > .hm-nav__link {
    border-bottom-color: var(--hm-black);
}

.hm-nav__item.hm-highlight .hm-nav__link {
    color: var(--hm-highlight);
}

/* Caret arrow */
.hm-caret {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: .7;
    transition: transform var(--hm-transition);
}
.hm-nav__item.is-open .hm-caret {
    transform: rotate(180deg);
}

/* Right actions */
.hm-nav__actions {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.hm-btn-icon {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--hm-black);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    border-radius: var(--hm-radius);
    transition: background var(--hm-transition);
}
.hm-btn-icon:hover { background: #f4f4f4; }

.hm-search-toggle .hm-search-placeholder {
    font-size: 13px;
    color: var(--hm-gray-light);
    padding: 0 8px;
    white-space: nowrap;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Cart badge */
.hm-cart { position: relative; }
.hm-cart__count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--hm-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Hamburger (hidden on desktop) */
.hm-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 8px;
}
.hm-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--hm-black);
    border-radius: 2px;
    transition: transform var(--hm-transition), opacity var(--hm-transition);
}

/* Search bar */
.hm-search-bar {
    background: var(--hm-bg);
    border-top: 1px solid var(--hm-border);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}
.hm-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: var(--hm-font);
    background: transparent;
}
.hm-search-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--hm-gray);
    padding: 4px 8px;
}

/* ════════════════════════════════════════════════════
   MEGA DROPDOWN — shared
════════════════════════════════════════════════════ */
.hm-backdrop {
    position: fixed;
    inset: 0;
    top: 124px;
    background: rgba(0,0,0,.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--hm-transition);
    z-index: calc(var(--hm-z-dropdown) - 1);
}

.scroll .hm-backdrop{
    top: 64px;
}

.hm-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.hm-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transform: translateX(-50%);
    background: var(--hm-bg);
    border: 1px solid var(--hm-border);
    border-top: none;
    border-radius: 0 0 var(--hm-radius) var(--hm-radius);
    box-shadow: var(--hm-shadow);
    z-index: var(--hm-z-dropdown);
    min-width: 680px;
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
    pointer-events: none;
    transition: opacity var(--hm-transition), transform var(--hm-transition);
}
.hm-dropdown.is-open {
    opacity: 1;
    transform: translateX(0) translateY(0);
    pointer-events: auto;
}

.hm-dropdown__inner {
    display: flex;
    gap: 0;
    padding: 32px 0;
    margin: 0 auto;
}

/* Column */
.hm-dd-col {
    padding: 0 32px;
    flex: 1;
    min-width: 0;
}
.hm-dd-col + .hm-dd-col {
    border-left: 1px solid var(--hm-border);
}
.hm-dd-col--featured {
    flex: 0 0 260px;
    border-left: 1px solid var(--hm-border);
}
.hm-dd-col--colors {
    flex: 0 0 250px;
}

/* Column heading */
.hm-dd-heading {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--hm-gray-light);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hm-dd-heading__link {
    font-size: 11px;
    font-weight: 600;
    color: var(--hm-accent);
    letter-spacing: .04em;
}
.hm-dd-heading__link:hover { text-decoration: underline; }

/* List item */
.hm-dd-list { display: flex; flex-direction: column; gap: 4px; }

.hm-dd-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--hm-black);
    border-radius: var(--hm-radius);
    transition: background var(--hm-transition);
}
.hm-dd-item:hover { background: #f7f7f5; }

.hm-dd-item__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hm-dd-item__text strong {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
}
.hm-dd-item__text small {
    font-size: 11px;
    color: var(--hm-gray);
}

/* Swatch */
.hm-swatch {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,.08);
}
.hm-swatch--lg {
    width: 40px;
    height: 40px;
    border-radius: 6px;
}

/* Type list (Tekstylia col 1) */
.hm-dd-list--typy .hm-dd-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    font-size: 13px;
    color: var(--hm-black);
    border-bottom: 1px solid var(--hm-border);
    transition: color var(--hm-transition);
}
.hm-dd-list--typy .hm-dd-type:hover { color: var(--hm-accent); }
.hm-dd-list--typy li:last-child .hm-dd-type { border-bottom: none; }

.hm-dd-type__count, .hm-dd-type__badge {
    font-size: 11px;
    color: var(--hm-gray-light);
}

/* Color grid */
.hm-color-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.hm-color-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--hm-transition), border-color var(--hm-transition);
    outline: none;
}
.hm-color-dot:hover,
.hm-color-dot:focus-visible {
    transform: scale(1.15);
    border-color: #fff;
    box-shadow: 0 0 0 2px var(--hm-gray);
}

/* Simple dropdown (meble/dodatki) */
.hm-dropdown--simple .hm-dropdown__inner { min-width: 200px; }
.hm-dd-list--simple .hm-dd-simple-link {
    display: block;
    padding: 10px 0;
    font-size: 13px;
    color: var(--hm-black);
    border-bottom: 1px solid var(--hm-border);
    transition: color var(--hm-transition);
}
.hm-dd-list--simple li:last-child .hm-dd-simple-link { border-bottom: none; }
.hm-dd-simple-link:hover { color: var(--hm-accent); }

/* ── Featured card ────────────────────────────────── */
.hm-featured-card {
    display: block;
    border-radius: var(--hm-radius);
    overflow: hidden;
    background: #f7f7f5;
    transition: box-shadow var(--hm-transition);
}
.hm-featured-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.12); }

.hm-featured-card__img {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hm-featured-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hm-featured-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hm-featured-card__body h3 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .04em;
}
.hm-featured-card__body p {
    font-size: 12px;
    color: var(--hm-gray);
    line-height: 1.5;
}

.hm-badge {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    color: var(--hm-accent);
    display: flex;
    align-items: center;
    gap: 4px;
}
.hm-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hm-accent);
    display: inline-block;
}

.hm-cta {
    font-size: 12px;
    font-weight: 600;
    color: var(--hm-black);
    margin-top: 4px;
}

/* Helper dot */
.hm-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hm-accent);
}

/* ════════════════════════════════════════════════════
   MOBILE DRAWER
════════════════════════════════════════════════════ */
.hm-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: var(--hm-z-overlay);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--hm-transition);
}
.hm-mobile-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.hm-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(420px, 100vw);
    background: var(--hm-bg);
    z-index: var(--hm-z-mobile);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 280ms cubic-bezier(.4,0,.2,1);
    overflow: hidden;
}
.hm-mobile-drawer.is-open {
    transform: translateX(0);
}

/* Drawer header */
.hm-mobile-drawer__header {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 16px;
    height: 56px;
    border-bottom: 1px solid var(--hm-border);
    flex-shrink: 0;
}
.hm-mobile-logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .12em;
    flex: 1;
    color: var(--hm-black);
    text-decoration: none;
}
.hm-mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 0;
}
.hm-mobile-header-actions .hm-btn-icon {
    padding: 8px;
}
.hm-mobile-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--hm-gray-dark);
    padding: 8px;
    margin-left: 4px;
    padding: 4px 8px;
    line-height: 1;
}

/* Panels container */
.hm-mobile-panels {
    flex: 1;
    overflow: hidden;
    position: relative;
}

/* Panel */
.hm-mobile-panel {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 0 40px;
    transform: translateX(100%);
    transition: transform 240ms cubic-bezier(.4,0,.2,1);
    -webkit-overflow-scrolling: touch;
}
.hm-mobile-panel.is-active {
    transform: translateX(0);
}
.hm-mobile-panel--root {
    transform: translateX(0);
}
.hm-mobile-panel--root.slide-out {
    transform: translateX(-100%);
}

/* Panel header (back button) */
.hm-mobile-panel__header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--hm-border);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--hm-black);
    position: sticky;
    top: 0;
    background: var(--hm-bg);
    z-index: 1;
}
.hm-mobile-back {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--hm-black);
    padding: 0 4px;
    line-height: 1;
    flex-shrink: 0;
}
.hm-mobile-panel__body { padding: 0 20px 40px; }

/* Search */
.hm-mobile-search {
    margin: 16px 20px;
    position: relative;
}
.hm-mobile-search input {
    width: 100%;
    height: 44px;
    border: 1px solid var(--hm-border);
    border-radius: 22px;
    padding: 0 44px 0 20px;
    font-size: 14px;
    font-family: var(--hm-font);
    outline: none;
    background: #f9f9f7;
    color: var(--hm-black);
}
.hm-mobile-search input::placeholder { color: var(--hm-gray-light); }
.hm-mobile-search svg {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--hm-gray-light);
    pointer-events: none;
}

/* Mobile featured cards */
.hm-mobile-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 20px 16px;
}
.hm-mobile-feat-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--hm-border);
    transition: box-shadow var(--hm-transition);
}
.hm-mobile-feat-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.hm-mobile-feat-card__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-bottom: 2px;
}
.hm-mobile-feat-card__icon {
    font-size: 14px;
    margin-bottom: 2px;
}
.hm-mobile-feat-card__badge {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.hm-mobile-feat-card__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--hm-black);
    line-height: 1.2;
}

/* Section label */
.hm-mobile-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--hm-gray-light);
    padding: 14px 20px 6px;
}

/* Mobile nav list */
.hm-mobile-nav { padding: 0; }
.hm-mobile-nav__item { border-bottom: 1px solid var(--hm-border); }
.hm-mobile-nav__link {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--hm-black);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background var(--hm-transition);
    font-family: var(--hm-font);
}
.hm-mobile-nav__link:hover { background: #f7f7f5; }
.hm-mobile-nav__link--hl { color: var(--hm-black); background: #f7f7f5; }

.hm-mobile-nav__texts {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}
.hm-mobile-nav__label { font-size: 15px; font-weight: 600; }
.hm-mobile-nav__sub { font-size: 11px; color: var(--hm-gray); font-weight: 400; }

.hm-mobile-nav__arrow {
    font-size: 20px;
    color: var(--hm-gray-light);
    margin-left: auto;
    flex-shrink: 0;
}

/* Twoje kolory icon */
.hm-twoje-kolory-icon {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}
.hm-twoje-kolory-icon span {
    width: 8px;
    height: 22px;
    border-radius: 2px;
}

/* Extra links */
.hm-mobile-extra {
    padding: 16px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.hm-mobile-extra li { border-bottom: 1px solid var(--hm-border); }
.hm-mobile-extra a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    color: var(--hm-gray-dark);
}
.hm-mobile-extra a:hover { color: var(--hm-black); }

/* Mobile footer */
.hm-mobile-footer {
    padding: 20px 20px 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
/* Language switcher — obsługuje dowolną liczbę języków (WPML, Polylang, manualne) */
.hm-mobile-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.hm-lang-btn {
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-family: var(--hm-font);
}
.hm-lang-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--hm-gray-dark);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 2px;
    text-decoration: none;
}
.hm-lang-link:hover { color: var(--hm-black); }
.hm-lang-btn img, .hm-lang-link img {
    display: inline-block;
    vertical-align: middle;
    border-radius: 1px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.12);
}

/* Koszyk — ukryty badge gdy pusty */
.hm-cart__count--hidden { display: none; }
.hm-mobile-delivery {
    font-size: 12px;
    color: var(--hm-accent);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Mobile type grid (2×2) */
.hm-mobile-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 8px;
}
.hm-mobile-type-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 18px 12px;
    border: 1px solid var(--hm-border);
    border-radius: var(--hm-radius);
    text-align: center;
    transition: border-color var(--hm-transition);
}
.hm-mobile-type-btn:hover { border-color: var(--hm-black); }
.hm-mobile-type-btn strong {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--hm-black);
}
.hm-mobile-type-btn small {
    font-size: 11px;
    color: var(--hm-gray);
}

/* Mobile collection list */
.hm-mobile-collection-list {
    list-style: none;
    margin: 8px 0;
}
.hm-mobile-collection-list li { border-bottom: 1px solid var(--hm-border); }
.hm-mobile-collection-list li:last-child { border-bottom: none; }

.hm-mobile-collection-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
}
.hm-mobile-collection-item--plain { padding: 14px 0; }
.hm-mobile-collection-item__texts {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}
.hm-mobile-collection-item__texts strong {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
}
.hm-mobile-collection-item__texts small {
    font-size: 11px;
    color: var(--hm-gray);
}
.hm-mobile-collection-item > span:last-child {
    font-size: 18px;
    color: var(--hm-gray-light);
}

/* Mobile colors */
.hm-mobile-colors {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 8px 0 16px;
}
.hm-mobile-colors .hm-color-dot {
    width: 40px;
    height: 40px;
}

/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .hm-nav__list,
    .hm-nav__actions .hm-search-toggle .hm-search-placeholder,
    .hm-nav__actions a:not(.hm-cart),
    .hm-nav__actions button:not(.hm-search-toggle) {
        display: none;
    }
    .hm-hamburger { display: flex; }
    .hm-nav__actions { gap: 0; }
    .hm-nav__actions .hm-search-toggle { padding: 8px 4px; }
    .hm-nav__actions .hm-search-toggle .hm-search-placeholder { display: none; }

    /* On mobile cart + search toggle stay visible */
    .hm-nav__actions .hm-cart { display: flex; }
}

@media (max-width: 600px) {
    .hm-delivery-bar { font-size: 11px; }
    .hm-nav__inner { padding: 0 16px; }
    .hm-mobile-featured { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* Prevent body scroll when drawer open */
body.hm-drawer-open { overflow: hidden; }

/* ════════════════════════════════════════════════════
   SECONDARY NAV (pasek pod głównym menu)
════════════════════════════════════════════════════ */
.hm-secondary-nav {
    background: var(--hm-bg);
    /* border-bottom: 1px solid var(--hm-border); */
}

.hm-secondary-nav__list {
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    height: 36px;
    overflow-x: auto;
    scrollbar-width: none;
}
.hm-secondary-nav__list::-webkit-scrollbar { display: none; }

.hm-secondary-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 14px;
    font-size: 12px;
    color: var(--hm-gray-dark);
    white-space: nowrap;
    height: 100%;
    /* border-right: 1px solid var(--hm-border); */
    transition: color var(--hm-transition);
}
.hm-secondary-nav__list li:first-child .hm-secondary-nav__link { padding-left: 0; }
.hm-secondary-nav__list li:last-child  .hm-secondary-nav__link { border-right: none; }
.hm-secondary-nav__link:hover { color: var(--hm-black); }
.hm-secondary-nav__link--featured {  color: #a84520 !important; font-weight: 500; }
.hm-secondary-nav__link--featured:hover { color: #a84520; }

/* secondary nav ukryty na mobile (jest w mobile_extra) */
@media (max-width: 900px) {
    .hm-secondary-nav { display: none; }
}

/* ── Wishlist badge (identyczny styl jak cart) ────── */
.hm-wishlist { position: relative; }

