/* ═══════════════════════════════════════════════════════════
   DigitalTienda — Header CSS (stable Nido-derived layout)
   /wp-content/themes/digitaltienda/assets/css/header.css
   ═══════════════════════════════════════════════════════════ */

/* ── RESET: PopularFX + Elementor button defaults ──
   Beats browser default + parent theme button styles globally
   for all icon-style buttons in our header */
.nido-hamburger,
button.nido-header__action,
.nido-header__search-btn,
.nido-mobile-menu__close,
.nido-mobile-menu__search-btn,
.nido-cart-drawer__close {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    outline: none !important;
}

/* Reset PopularFX cart widget */
header .pfx-menu-cart.cart-customlocation { display: none !important; }
body.nido-no-scroll { overflow: hidden !important; }

/* ── TOP BAR ── */
.nido-topbar { background: #0F9F98; width: 100%; position: relative; z-index: 1000; }
.nido-topbar__inner { max-width: 1200px; margin: 0 auto; padding: 9px 40px; display: flex; align-items: center; justify-content: center; gap: 40px; box-sizing: border-box; }
.nido-topbar__item { display: flex; align-items: center; gap: 7px; font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 12px; font-weight: 500; color: #fff!important; white-space: nowrap; text-decoration: none; }
.nido-topbar__item strong { font-weight: 700; }
.nido-topbar__check { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; background: rgba(255,255,255,0.25); border-radius: 50%; flex-shrink: 0; }
.nido-topbar__check svg { width: 9px; height: 9px; }
.nido-topbar__sep { width: 1px; height: 14px; background: rgba(255,255,255,0.3); flex-shrink: 0; }

/* ── MAIN HEADER ── */
.nido-header { background: #FFFFFF; border-bottom: 1px solid #E5E7EB; position: sticky; top: 0; z-index: 999; transition: box-shadow 0.3s ease; width: 100%; }
.nido-header--sticky { box-shadow: 0 2px 16px rgba(16,32,51,0.10); }
.nido-header__inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; height: 76px; display: flex; align-items: center; gap: 24px; box-sizing: border-box; }

/* Logo */
.nido-header__logo { flex-shrink: 0; display: flex; align-items: center; text-decoration: none; }
.nido-header__logo img,
.nido-header__logo .custom-logo { max-height: 48px !important; width: auto !important; display: block !important; }
.nido-header__site-name { font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 20px; font-weight: 600; color: #102033; text-decoration: none; }

/* Search — desktop only */
.nido-header__search { flex: 1; min-width: 0; max-width: 520px; margin: 0 auto; }
.nido-header__search-form { display: flex; align-items: center; background: #F4F7F8; border: 1.5px solid transparent; border-radius: 4px; overflow: hidden; transition: border-color 0.2s ease; }
.nido-header__search-form:focus-within { border-color: #0F9F98; background: #FFFFFF; }
.nido-header__search-input { flex: 1; background: transparent !important; border: none !important; outline: none !important; padding: 10px 14px !important; font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important; font-size: 14px !important; color: #414141 !important; box-shadow: none !important; width: 100% !important; margin: 0 !important; }
.nido-header__search-input::placeholder { color: #6B7D86 !important; font-size: 13px !important; }
.nido-header__search-btn { padding: 10px 14px !important; cursor: pointer !important; color: #6B7D86 !important; display: flex !important; align-items: center !important; transition: color 0.2s ease !important; flex-shrink: 0 !important; }
.nido-header__search-btn:hover { color: #0F9F98 !important; }
.nido-header__search-btn svg { width: 16px; height: 16px; }

/* Action icons — all items same style */
.nido-header__actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }

.nido-header__action {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 3px !important;
    padding: 8px 10px !important;
    text-decoration: none !important;
    color: #102033 !important;
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    border-radius: 4px !important;
    transition: color 0.2s ease, background 0.2s ease !important;
    position: relative !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    line-height: 1 !important;
}
.nido-header__action:hover { color: #0F9F98 !important; background: rgba(15,159,152,0.07) !important; }
.nido-header__action svg { width: 22px !important; height: 22px !important; stroke: currentColor !important; fill: none !important; stroke-width: 1.6 !important; stroke-linecap: round !important; stroke-linejoin: round !important; flex-shrink: 0 !important; }
.nido-header__action-label { font-size: 10px !important; font-weight: 500 !important; line-height: 1 !important; color: inherit !important; }

/* Cart badge — tight to top-right of icon */
.nido-header__cart-badge {
    position: absolute !important;
    top: 2px !important;
    right: 2px !important;
    background: #0F9F98 !important;
    color: #FFFFFF !important;
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    width: 15px !important;
    height: 15px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    pointer-events: none !important;
}
.nido-header__cart-badge:empty { display: none !important; }

/* ── HAMBURGER — hidden on desktop, shown on mobile ── */
.nido-hamburger {
    display: none !important;
    flex-direction: column !important;
    gap: 5px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px !important;
    cursor: pointer !important;
    color: #102033 !important;
    border-radius: 4px !important;
    transition: background 0.2s ease !important;
    width: auto !important;
    height: auto !important;
}
.nido-hamburger:hover { background: rgba(15,159,152,0.09) !important; }
.nido-hamburger__line { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }

/* ── DESKTOP NAV ── */
.nido-nav-wrap { border-top: 1px solid #E5E7EB; background: #FFFFFF; position: sticky; top: 76px; z-index: 998; }
.nido-nav__inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; }
.nido-nav__list { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; gap: 0; }
.nido-nav__item { position: relative; margin: 0; padding: 0; }
.nido-nav__link { display: flex; align-items: center; gap: 5px; padding: 16px 18px; font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 13px; font-weight: 600; color: #102033; text-transform: uppercase; letter-spacing: 0.05em; text-decoration: none; white-space: nowrap; position: relative; transition: color 0.2s ease; }
.nido-nav__link::after { content: ''; position: absolute; bottom: 0; left: 18px; right: 18px; height: 2px; background: #0F9F98; transform: scaleX(0); transition: transform 0.25s ease; transform-origin: left; }
.nido-nav__link:hover, .nido-nav__link--active { color: #0F9F98; }
.nido-nav__link:hover::after, .nido-nav__link--active::after { transform: scaleX(1); }
.nido-nav__chevron { flex-shrink: 0; transition: transform 0.25s ease; }
.nido-nav__item--has-dropdown:hover .nido-nav__chevron, .nido-nav__item--open .nido-nav__chevron { transform: rotate(180deg); }

/* Dropdown */
.nido-nav__dropdown { position: absolute; top: 100%; left: 0; min-width: 220px; background: #FFFFFF; border: 1px solid #DCE4E7; border-top: 2px solid #0F9F98; border-radius: 0 0 4px 4px; box-shadow: 0 8px 24px rgba(16,32,51,0.12); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s; z-index: 100; }
.nido-nav__item--has-dropdown:hover .nido-nav__dropdown, .nido-nav__item--open .nido-nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nido-nav__dropdown-inner { padding: 8px 0; }
.nido-nav__dropdown-list { list-style: none; margin: 0; padding: 0; }
.nido-nav__dropdown-item { margin: 0; padding: 0; position: relative; }
.nido-nav__dropdown-link { display: block; padding: 10px 20px; font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 13px; font-weight: 500; color: #102033; text-decoration: none; transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease; white-space: nowrap; }
.nido-nav__dropdown-link:hover { background: #EAF8F7; color: #0F9F98; padding-left: 26px; }
.nido-nav__sub-list { position: absolute; top: 0; left: 100%; min-width: 200px; background: #FFFFFF; border: 1px solid #DCE4E7; border-top: 2px solid #0F9F98; border-radius: 0 4px 4px 4px; box-shadow: 0 8px 24px rgba(16,32,51,0.12); list-style: none; margin: 0; padding: 8px 0; opacity: 0; visibility: hidden; transition: opacity 0.2s ease, visibility 0.2s; }
.nido-nav__dropdown-item:hover > .nido-nav__sub-list { opacity: 1; visibility: visible; }
.nido-nav__sub-link { display: block; padding: 9px 20px; font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 13px; color: #102033; text-decoration: none; transition: background 0.15s ease, color 0.15s ease; white-space: nowrap; }
.nido-nav__sub-link:hover { background: #EAF8F7; color: #0F9F98; }

/* ── MOBILE MENU ── */
.nido-mobile-menu { position: fixed; top: 0; left: 0; width: min(340px, 90vw); height: 100vh; height: 100dvh; background: #FFFFFF; z-index: 1100; transform: translateX(-100%); transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94); overflow-y: auto; display: flex; flex-direction: column; box-shadow: 4px 0 24px rgba(16,32,51,0.15); }
.nido-mobile-menu--open { transform: translateX(0); }
.nido-mobile-menu__head { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1.5px solid #DCE4E7; background: linear-gradient(135deg, #F5FBFA 0%, #ECF4F4 100%); flex-shrink: 0; }
.nido-mobile-menu__logo img, .nido-mobile-menu__logo .custom-logo { max-height: 36px !important; width: auto !important; }
.nido-mobile-menu__close { padding: 8px !important; cursor: pointer !important; color: #102033 !important; border-radius: 4px !important; display: flex !important; align-items: center !important; transition: background 0.2s ease !important; }
.nido-mobile-menu__close:hover { background: rgba(15,159,152,0.10) !important; }
.nido-mobile-menu__close svg { width: 20px; height: 20px; }

/* ── Mobile search — matches desktop header search exactly ── */
.nido-mobile-menu__search { padding: 14px 20px; border-bottom: 1.5px solid #DCE4E7; flex-shrink: 0; background: #FFFFFF; }
.nido-mobile-menu__search-form { display: flex; align-items: center; background: #F4F7F8; border: 1.5px solid transparent; border-radius: 4px; overflow: hidden; transition: border-color 0.2s ease; }
.nido-mobile-menu__search-form:focus-within { border-color: #0F9F98; background: #FFFFFF; }
.nido-mobile-menu__search-input { flex: 1 !important; background: transparent !important; border: none !important; outline: none !important; padding: 12px 14px !important; font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important; font-size: 15px !important; color: #414141 !important; box-shadow: none !important; width: 100% !important; margin: 0 !important; -webkit-appearance: none !important; appearance: none !important; }
.nido-mobile-menu__search-input::placeholder { color: #6B7D86 !important; font-size: 14px !important; }
.nido-mobile-menu__search-btn { padding: 10px 14px !important; cursor: pointer !important; color: #6B7D86 !important; background: transparent !important; border: none !important; display: flex !important; align-items: center !important; justify-content: center !important; transition: color 0.2s ease !important; flex-shrink: 0 !important; -webkit-appearance: none !important; appearance: none !important; box-shadow: none !important; border-radius: 0 !important; }
.nido-mobile-menu__search-btn:hover { color: #0F9F98 !important; }
.nido-mobile-menu__search-btn svg { width: 18px !important; height: 18px !important; display: block !important; stroke: currentColor !important; fill: none !important; flex-shrink: 0 !important; }

/* Mobile nav */
.nido-mob-nav { flex: 1; overflow-y: auto; }
.nido-mob-nav__list { list-style: none; margin: 0; padding: 8px 0; }
.nido-mob-nav__item { margin: 0; padding: 0; border-bottom: 1px solid #F4F7F8; }
.nido-mob-nav__item:last-child { border-bottom: none; }
.nido-mob-nav__link { display: block; padding: 14px 20px; font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 14px; font-weight: 500; color: #102033; text-decoration: none; transition: color 0.2s ease, background 0.2s ease; }
.nido-mob-nav__link:hover { color: #0F9F98; background: #F5FBFA; }
.nido-mob-nav__link--sub { padding: 10px 20px 10px 36px; font-size: 13px; color: #64748B; font-weight: 400; }
/* Row wrapper for items with children: link on left, toggle button on right */
.nido-mob-nav__row { display: flex; align-items: stretch; width: 100%; }
.nido-mob-nav__row .nido-mob-nav__link { flex: 1; min-width: 0; }

/* Toggle button — only the arrow chevron, not a full-width button */
.nido-mob-nav__toggle { display: flex; align-items: center; justify-content: center; width: 48px; flex-shrink: 0; background: none !important; border: none !important; border-left: 1px solid #E5E7EB !important; padding: 0 !important; cursor: pointer; text-align: center; -webkit-appearance: none !important; color: #0F9F98; transition: background 0.2s ease !important; }
.nido-mob-nav__toggle:hover { background: #EAF8F7 !important; }
.nido-mob-nav__arrow { display: inline-flex; align-items: center; padding: 12px 20px 12px 10px; color: #0F9F98; flex-shrink: 0; transition: transform 0.25s ease; }
.nido-mob-nav__toggle[aria-expanded="true"] .nido-mob-nav__arrow { transform: rotate(180deg); }
.nido-mob-nav__sub { list-style: none; margin: 0; padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: #F8FAFC; border-top: 1px solid #E5E7EB; }
.nido-mob-nav__sub--open { max-height: 600px; }

.nido-mobile-menu__footer { padding: 16px 20px; border-top: 1.5px solid #DCE4E7; background: #F5FBFA; flex-shrink: 0; }
.nido-mobile-menu__footer-link { display: flex; align-items: center; gap: 10px; font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 13px; color: #102033; text-decoration: none; padding: 8px 0; border-bottom: 1px solid #E5E7EB; }
.nido-mobile-menu__footer-link:last-child { border-bottom: none; }
.nido-mobile-menu__footer-link svg { width: 18px; height: 18px; fill: none; stroke-width: 1.6; flex-shrink: 0; }

/* ── CART DRAWER — PREMIUM ── */
.nido-cart-drawer { position: fixed; top: 0; right: 0; width: min(420px, 95vw); height: 100vh; height: 100dvh; background: #FFFFFF; z-index: 1100; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94); display: flex; flex-direction: column; box-shadow: -4px 0 32px rgba(16,32,51,0.15); }
.nido-cart-drawer--open { transform: translateX(0); }

/* Cart header */
.nido-cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid #E5E7EB; flex-shrink: 0; }
.nido-cart-drawer__title { font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important; font-size: 17px !important; font-weight: 600 !important; color: #102033 !important; margin: 0 !important; display: flex !important; align-items: center !important; gap: 10px !important; }
.nido-cart-drawer__title svg { width: 20px; height: 20px; stroke: #0F9F98; fill: none; stroke-width: 1.6; }
.nido-cart-drawer__close { padding: 6px !important; cursor: pointer !important; color: #6B7D86 !important; border-radius: 4px !important; display: flex !important; align-items: center !important; transition: all 0.2s ease !important; }
.nido-cart-drawer__close:hover { background: #EAF8F7 !important; color: #102033 !important; }
.nido-cart-drawer__close svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

/* Cart body */
.nido-cart-drawer__body { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; }

/* Cart items — custom render */
.nido-cart-drawer__items { padding: 0; }

.nido-cart-item { display: flex; gap: 14px; padding: 18px 20px; border-bottom: 1px solid #F4F7F8; align-items: flex-start; position: relative; }
.nido-cart-item:last-child { border-bottom: none; }

.nido-cart-item__img-link { flex-shrink: 0; display: block; }
.nido-cart-item__img-link img { width: 80px !important; height: 80px !important; object-fit: cover !important; border-radius: 3px !important; border: 1px solid #E5E7EB !important; display: block !important; }

.nido-cart-item__info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; padding-right: 24px; }

.nido-cart-item__name { font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important; font-size: 13px !important; font-weight: 500 !important; color: #102033 !important; text-decoration: none !important; line-height: 1.45 !important; display: -webkit-box !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; }
.nido-cart-item__name:hover { color: #0F9F98 !important; }

.nido-cart-item__meta { display: flex; align-items: center; gap: 4px; }
.nido-cart-item__qty { font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 13px; color: #6B7D86; }
.nido-cart-item__price { font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 14px; font-weight: 700; color: #0F9F98; }

.nido-cart-item__remove { position: absolute !important; top: 16px !important; right: 16px !important; font-size: 16px !important; color: #94A3B8 !important; text-decoration: none !important; line-height: 1 !important; width: 20px !important; height: 20px !important; display: flex !important; align-items: center !important; justify-content: center !important; border-radius: 50% !important; transition: all 0.2s ease !important; }
.nido-cart-item__remove:hover { color: #FFFFFF !important; background: #102033 !important; }

/* Empty cart */
.nido-cart-empty { padding: 48px 24px; text-align: center; font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 14px; color: #6B7D86; line-height: 1.6; }
.nido-cart-empty a { color: #0F9F98; text-decoration: underline; }

/* Cart footer */
.nido-cart-drawer__footer { padding: 16px 20px 24px; border-top: 1.5px solid #DCE4E7; background: #F8FAFC; flex-shrink: 0; }
.nido-cart-drawer__total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid #E5E7EB; }
.nido-cart-drawer__total-label { font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 14px; font-weight: 600; color: #102033; }
.nido-cart-drawer__total-amount { font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 18px; font-weight: 700; color: #0F9F98; }

/* Cart buttons — matching our brand, beat Elementor */
.nido-cart-drawer__btn,
a.nido-cart-drawer__btn {
    display: block !important;
    width: 100% !important;
    background: #102033 !important;
    color: #FFFFFF !important;
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    padding: 14px 20px !important;
    border: 2px solid #102033 !important;
    border-radius: 2px !important;
    text-align: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: background 0.25s ease, color 0.25s ease !important;
    box-sizing: border-box !important;
    margin-bottom: 8px !important;
    line-height: 1.4 !important;
}
.nido-cart-drawer__btn:hover,
a.nido-cart-drawer__btn:hover {
    background: #0F9F98 !important;
    border-color: #0F9F98 !important;
    color: #FFFFFF !important;
}
.nido-cart-drawer__btn--secondary,
a.nido-cart-drawer__btn--secondary {
    background: transparent !important;
    color: #102033 !important;
    border: 2px solid #DCE4E7 !important;
    margin-bottom: 0 !important;
}
.nido-cart-drawer__btn--secondary:hover,
a.nido-cart-drawer__btn--secondary:hover {
    background: #F4F7F8 !important;
    border-color: #0F9F98 !important;
    color: #102033 !important;
}

/* ── OVERLAY ── */
.nido-overlay { position: fixed; inset: 0; background: rgba(16,32,51,0.45); z-index: 1050; opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s; backdrop-filter: blur(2px); }
.nido-overlay--visible { opacity: 1; visibility: visible; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .nido-header__inner { padding: 0 24px; gap: 16px; }
    .nido-header__action-label { display: none !important; }
    .nido-nav__inner { padding: 0 24px; }
    .nido-nav__link { padding: 14px 14px; font-size: 12px; }
}

@media (max-width: 900px) {
    /* Hide search completely on mobile */
    .nido-header__search { display: none !important; }
    /* Hide entire desktop nav strip */
    .nido-nav-wrap { display: none !important; }
    /* Show hamburger in header actions */
    .nido-hamburger { display: flex !important; }
    /* Topbar: scrollable */
    .nido-topbar__inner { justify-content: flex-start; overflow-x: auto; padding: 8px 16px; gap: 20px; scrollbar-width: none; }
    .nido-topbar__inner::-webkit-scrollbar { display: none; }
    .nido-topbar__sep { display: none; }
    /* Smaller gaps on header actions */
    .nido-header__actions { gap: 0; }
}

@media (max-width: 767px) {
    .nido-header__inner { padding: 0 16px; height: 64px; gap: 8px; }
    .nido-header__logo img, .nido-header__logo .custom-logo { max-height: 36px !important; }
    .nido-header__action { padding: 6px 7px !important; }
    .nido-header__action svg { width: 20px !important; height: 20px !important; }
    .nido-header__action--support { display: none; }
}

@media (max-width: 480px) {
    .nido-header__inner { gap: 4px; justify-content: space-between;}
    .nido-header__action { padding: 6px 6px !important; }
}

@media (max-width: 360px) {
    .nido-header__inner { padding: 0 12px; }
}

@media (prefers-reduced-motion: reduce) {
    .nido-mobile-menu, .nido-cart-drawer, .nido-overlay,
    .nido-nav__dropdown, .nido-mob-nav__sub, .nido-header,
    .nido-hamburger, .nido-cart-item__remove { transition: none !important; }
}


/* DigitalTienda-specific stability overrides */
.nido-header__inner { max-width: 1280px; }
.nido-header__logo { width: 250px; max-width: 250px; overflow: hidden; }
.nido-header__logo img, .nido-header__logo .custom-logo { max-width: 240px !important; max-height: 46px !important; object-fit: contain !important; }
.nido-header__search { max-width: 560px; }
.nido-nav__inner { max-width: 1280px; justify-content: flex-start; gap: 12px; }
.nido-shop-all { display:inline-flex; align-items:center; gap:7px; padding:10px 15px; background:#0F9F98; color:#fff !important; text-decoration:none; border-radius:4px; font-size:12px; font-weight:700; white-space:nowrap; flex-shrink:0; }
.nido-shop-all:hover { background:#0B827D; color:#fff !important; }
.nido-nav__list { flex-wrap: nowrap; min-width: 0; }
.nido-nav__link { padding-left: 13px; padding-right: 13px; font-size: 12px; }
@media (max-width: 1100px) { .nido-header__logo { width:210px; max-width:210px; } .nido-header__logo img,.nido-header__logo .custom-logo{max-width:200px!important;} .nido-nav__link{padding-left:10px;padding-right:10px;font-size:11px;} }
@media (max-width: 900px) { .nido-header__logo { width:auto; max-width:190px; } .nido-header__logo img,.nido-header__logo .custom-logo{max-width:180px!important;} .nido-shop-all{display:none;} }
@media (max-width: 480px) { .nido-header__logo { max-width:160px; } .nido-header__logo img,.nido-header__logo .custom-logo{max-width:155px!important;max-height:34px!important;} }
