.dru-header {
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.3;
}

.dru-header__inner {
    display: flex;
    align-items: center;
    height: var(--header-h);
    gap: 28px;
}

.dru-header__logo {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.dru-header__logo img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.dru-header__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.dru-header__top {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--divider);
}

.dru-nav--top {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 45px;
}

.dru-nav__link {
    font-size: 15px;
    line-height: 19.5px;
    font-weight: 400;
    color: var(--text-primary);
    white-space: nowrap;
    transition: color .15s ease;
}
.dru-nav__link:hover { color: var(--accent); }

.dru-points {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dru-points__widget {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 36px;
    padding: 0 14px;
    border: 1px solid var(--border-dark);
    border-radius: 10px;
}

.dru-points__balance {
    display: flex;
    align-items: center;
    gap: 6px;
}
.dru-points__icon { opacity: .9; width: 20px; height: 20px; object-fit: contain; }
.dru-points__value {
    font-size: 15px;
    line-height: 18px;
    color: var(--text-primary);
    white-space: nowrap;
}

.dru-points__vline {
    width: 1px;
    height: 34px;
    background: var(--border-dark);
}

.dru-points__expire {
    display: flex;
    align-items: center;
    gap: 7px;
}
.dru-points__label {
    font-size: 15px;
    color: #ffffff;
}
.dru-timer {
    display: flex;
    align-items: center;
    gap: 3px;
}
.dru-timer__unit {
    background: var(--accent);
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    line-height: 15.6px;
    padding: 4px 7px;
    border-radius: 4px;
    min-width: 30px;
    text-align: center;
}
.dru-timer__sep {
    color: var(--accent);
    font-size: 15px;
}

.dru-city {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    font-size: 15px;
}
.dru-city:hover { color: var(--accent); }
.dru-city img { width: 20px; height: 20px; object-fit: contain; }

.dru-header__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.dru-header__bottom > form.dru-search {
    flex: 1;
    max-width: 568px;
}

.dru-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 56px;
    padding: 0 18px;
    border-radius: 15px;
    border: 1px solid var(--border-dark);
    color: var(--text-primary);
    font-size: 15px;
    line-height: 19.5px;
    background: transparent;
    transition: border-color .15s ease, background .15s ease;
}
.dru-btn:hover { border-color: var(--accent); }
.dru-btn img { flex: none; width: 36px; height: 36px; object-fit: contain; }

.dru-btn--catalog {
    background: var(--bg-dark);
    border-color: var(--accent);
    color: var(--accent);
}
.dru-btn--catalog:hover { background: #111; }

.dru-btn--loyalty { white-space: normal; }

.dru-search {
    height: 56px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 22px;
    border-radius: 15px;
    border: 1px solid var(--border-dark);
    background: transparent;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.dru-search__icon { opacity: .7; flex: none; width: 26px; height: 26px; object-fit: contain; }
.dru-search__input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: 0;
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 15px;
}
.dru-search__input::placeholder { color: var(--text-muted); }

.dru-search:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(107, 176, 34, .2);
}
.dru-search:focus-within .dru-search__icon { opacity: 1; }

.dru-btn--cart { position: relative; }
.dru-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 90px;
    background: var(--accent);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    text-align: center;
}

.dru-login__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.dru-login__main { color: var(--text-primary); font-size: 15px; }
.dru-login__sub  { color: var(--text-muted);  font-size: 13px; }

@media (max-width: 1240px) {
    .dru-header__inner { gap: 18px; }
    .dru-nav--top { gap: 22px; }
    .dru-search { max-width: 360px; }
}

@media (max-width: 1024px) {
    .dru-header__logo img { width: 72px; height: 72px; }
    .dru-header__inner { height: auto; padding: 14px 0; align-items: stretch; }
    .dru-header__body { gap: 16px; }
    .dru-nav--top { gap: 18px; overflow-x: auto; }
    .dru-search { max-width: 260px; }
}

@media (max-width: 820px) {
    .dru-header__inner { flex-wrap: wrap; }
    .dru-header__body { flex-basis: 100%; }
    .dru-header__top { flex-wrap: wrap; gap: 12px; }
    .dru-points { flex-wrap: wrap; }
    .dru-header__bottom { flex-wrap: wrap; }
    .dru-search { order: 99; max-width: 100%; flex: 1 1 100%; }
}
