/* ===== HEADER - YENİ TASARIM v3 ===== */

* { box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #f8fafc; }

/* ─────────────────────────────────────
   TOP BAR
───────────────────────────────────── */
.hdr-topbar {
    background: #15803d;          /* canlı yeşil */
    color: rgba(255,255,255,0.92);
    font-size: 0.76rem;
    padding: 7px 0;
}
.hdr-topbar-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 24px;
    display: flex; justify-content: space-between; align-items: center;
}
.topbar-left  { display: flex; gap: 18px; align-items: center; }
.topbar-right { display: flex; gap: 12px; align-items: center; }

.topbar-left a, .topbar-right a {
    color: rgba(255,255,255,0.88); text-decoration: none;
    display: inline-flex; align-items: center; gap: 5px;
    transition: color 0.2s;
}
.topbar-left a:hover, .topbar-right a:hover { color: #fff; }
.topbar-divider { width: 1px; height: 12px; background: rgba(255,255,255,0.3); }

.topbar-social { display: flex; gap: 6px; align-items: center; }
.topbar-social a {
    width: 26px; height: 26px; border-radius: 6px;
    background: rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.88rem; color: white; text-decoration: none;
    transition: all 0.2s;
}
.topbar-social a:hover { background: rgba(255,255,255,0.35); }

/* ─────────────────────────────────────
   ANA HEADER  (koyu lacivert)
───────────────────────────────────── */
.hdr-main {
    background: #0f172a;
    position: sticky; top: 0; z-index: 900;
    box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hdr-main-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; gap: 16px;
    height: 76px;
}

/* Logo kutusu */
.hdr-logo {
    flex-shrink: 0; display: flex; align-items: center; gap: 10px;
    text-decoration: none;
    background: white;
    border-radius: 12px;
    padding: 6px 14px 6px 8px;
    box-shadow: 0 0 0 2px rgba(132,204,22,0.35);
}
.hdr-logo img { height: 44px; width: auto; }
.hdr-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.hdr-logo-text strong {
    font-size: 0.82rem; font-weight: 800; color: #15803d; letter-spacing: -0.01em;
}
.hdr-logo-text small {
    font-size: 0.66rem; color: #64748b; font-weight: 500;
}

/* Arama */
.hdr-search { flex: 1; max-width: 560px; position: relative; }
.hdr-search-wrap {
    display: flex; align-items: center;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,0.14);
    overflow: hidden; transition: all 0.25s;
}
.hdr-search-wrap:focus-within {
    background: white;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
}
.hdr-search-wrap .s-icon {
    padding: 0 13px; color: rgba(255,255,255,0.45); font-size: 1.05rem;
    flex-shrink: 0; transition: color 0.25s;
}
.hdr-search-wrap:focus-within .s-icon { color: #15803d; }
.hdr-search input {
    flex: 1; border: none; background: transparent;
    padding: 12px 0; font-size: 0.88rem; color: white;
    outline: none; font-family: 'Inter', sans-serif;
    transition: color 0.25s;
}
.hdr-search-wrap:focus-within input { color: #0f172a; }
.hdr-search input::placeholder { color: rgba(255,255,255,0.4); }
.hdr-search-wrap:focus-within input::placeholder { color: #94a3b8; }
.hdr-search-btn {
    flex-shrink: 0; padding: 0 20px; min-height: 46px;
    background: #16a34a; color: white; border: none;
    font-size: 0.82rem; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; gap: 6px;
    transition: background 0.22s; white-space: nowrap;
    font-family: 'Inter', sans-serif; letter-spacing: 0.02em;
}
.hdr-search-btn:hover { background: #15803d; }

/* Arama sonuçları */
#hdrSearchResults {
    position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    background: white; border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    z-index: 1000; max-height: 68vh; overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
    border: 1px solid #e2e8f0;
}
#hdrSearchResults.open { opacity: 1; visibility: visible; transform: translateY(0); }
.sr-item {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 16px; text-decoration: none; color: #1e293b;
    border-bottom: 1px solid #f1f5f9; transition: background 0.15s;
}
.sr-item:last-child { border-bottom: none; }
.sr-item:hover { background: #f8fafc; }
.sr-img {
    width: 50px; height: 50px; border-radius: 10px;
    object-fit: cover; flex-shrink: 0; border: 1px solid #e2e8f0;
}
.sr-name {
    font-size: 0.85rem; font-weight: 600; line-height: 1.3; margin-bottom: 3px;
    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.sr-price { font-size: 0.94rem; font-weight: 800; color: #16a34a; }
.sr-price-old { font-size: 0.74rem; color: #94a3b8; text-decoration: line-through; margin-right: 4px; }
.sr-empty, .sr-loading { padding: 28px; text-align: center; color: #94a3b8; font-size: 0.87rem; }
.sr-spinner {
    width: 26px; height: 26px; border: 3px solid #f1f5f9; border-top-color: #16a34a;
    border-radius: 50%; animation: hdr-spin 0.7s linear infinite; margin: 0 auto 10px;
}
@keyframes hdr-spin { to { transform: rotate(360deg); } }

/* Sağ Aksiyonlar */
.hdr-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }

/* Diğer Siteler butonu */
.hdr-sites-btn {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 14px; border-radius: 9px;
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.14);
    cursor: pointer; color: rgba(255,255,255,0.85);
    font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600;
    transition: all 0.22s; white-space: nowrap;
}
.hdr-sites-btn:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.28); }
.hdr-sites-btn i.main-icon { font-size: 1.2rem; color: #4ade80; }
.hdr-sites-btn .btn-label { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.hdr-sites-btn .btn-label span:first-child { font-size: 0.67rem; color: rgba(255,255,255,0.55); }
.hdr-sites-btn .btn-label span:last-child { font-size: 0.8rem; font-weight: 700; color: white; }
.hdr-sites-btn .arr { font-size: 0.95rem; color: rgba(255,255,255,0.4); transition: transform 0.28s; }

/* Siteler dropdown */
#otherSitesDrop {
    position: absolute; top: calc(100% + 10px); right: 0; width: 260px;
    background: white; border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
    z-index: 800; overflow: hidden;
    border: 1px solid #e2e8f0;
}
#otherSitesDrop.open { opacity: 1; visibility: visible; transform: translateY(0); }
.site-drop-item {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px; text-decoration: none; color: #374151;
    border-bottom: 1px solid #f1f5f9; transition: background 0.18s;
}
.site-drop-item:last-child { border-bottom: none; }
.site-drop-item:hover { background: #f8fafc; }
.site-drop-icon {
    width: 38px; height: 38px; background: #dcfce7; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #16a34a; font-size: 1.1rem; flex-shrink: 0;
}
.site-drop-name { font-size: 0.82rem; font-weight: 700; color: #1e293b; margin-bottom: 2px; }
.site-drop-sub  { font-size: 0.71rem; color: #94a3b8; }

/* Sepet butonu */
.hdr-cart {
    display: flex; align-items: center; gap: 10px;
    padding: 0 20px 0 14px; height: 46px; border-radius: 12px;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white; text-decoration: none;
    border: 2px solid #22c55e;
    transition: all 0.25s; position: relative; white-space: nowrap;
    box-shadow: 0 4px 14px rgba(22,163,74,0.35);
}
.hdr-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22,163,74,0.5);
    border-color: #4ade80;
}
.hdr-cart-icon { font-size: 1.4rem; position: relative; }
.hdr-cart-badge {
    position: absolute; top: -7px; right: -7px;
    background: #ef4444; color: white;
    width: 19px; height: 19px; border-radius: 50%;
    font-size: 0.64rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #0f172a;
    transform: scale(0); transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.hdr-cart-badge.show { transform: scale(1); }
.hdr-cart-info { display: flex; flex-direction: column; line-height: 1.2; }
.hdr-cart-label { font-size: 0.67rem; color: rgba(255,255,255,0.75); }
.hdr-cart-total { font-size: 0.9rem; font-weight: 800; color: white; }
@keyframes cartPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }
.cart-pulse { animation: cartPulse 0.4s ease; }

/* Hamburger (sadece mobilde) */
.hdr-hamburger {
    display: none;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; width: 44px; height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 10px; cursor: pointer;
    transition: all 0.22s; flex-shrink: 0;
}
.hdr-hamburger:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }
.hdr-hamburger span {
    width: 20px; height: 2px; background: white;
    border-radius: 2px; transition: all 0.3s ease; display: block;
}
.hdr-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hdr-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────
   NAV BAR  (beyaz, altı yeşil çizgi)
───────────────────────────────────── */
.hdr-nav {
    background: white;
    border-bottom: 3px solid #16a34a;
    position: sticky; top: 76px; z-index: 800;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.hdr-nav-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: stretch; height: 48px;
}

/* Kategoriler bloğu */
.hdr-cat-wrap { position: relative; display: flex; }
.hdr-cat-btn {
    display: flex; align-items: center; gap: 9px;
    padding: 0 22px; border: none; cursor: pointer;
    background: #15803d; color: white;
    font-size: 0.86rem; font-weight: 700;
    font-family: 'Inter', sans-serif;
    transition: background 0.22s; border-right: none;
    min-width: 180px;
}
.hdr-cat-btn:hover, .hdr-cat-wrap:hover .hdr-cat-btn { background: #166534; }
.hdr-cat-btn .cat-icon { font-size: 1.15rem; }
.hdr-cat-btn .arr { margin-left: auto; transition: transform 0.3s; font-size: 1rem; opacity: 0.7; }
.hdr-cat-wrap:hover .hdr-cat-btn .arr { transform: rotate(180deg); }

.hdr-cat-menu {
    position: absolute; top: 100%; left: 0;
    width: 260px; background: white;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 16px 44px rgba(0,0,0,0.14);
    border-top: 3px solid #16a34a;
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
    z-index: 500; overflow: hidden;
    max-height: 420px; overflow-y: auto;
}
.hdr-cat-wrap:hover .hdr-cat-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.cat-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 11px 16px; color: #374151;
    font-size: 0.84rem; font-weight: 500; border-bottom: 1px solid #f8fafc;
    transition: all 0.18s; position: relative; cursor: pointer;
}
.cat-item:hover { background: #f0fdf4; color: #15803d; }
.cat-item:last-child { border-bottom: none; }
.cat-item-left {
    display: flex; align-items: center; gap: 10px; flex: 1;
    text-decoration: none; color: inherit;
}
.cat-item-left i { font-size: 0.92rem; color: #16a34a; width: 16px; text-align: center; flex-shrink: 0; }
.cat-item-arr { font-size: 0.85rem; color: #94a3b8; }

/* Alt kategori fly-out */
.cat-sub {
    position: absolute; top: 0; left: 100%;
    width: 230px; background: white;
    border-radius: 0 14px 14px 0; border-left: 3px solid #16a34a;
    box-shadow: 10px 0 30px rgba(0,0,0,0.1);
    opacity: 0; visibility: hidden; transform: translateX(-6px);
    transition: all 0.18s ease; z-index: 600;
}
.cat-item:hover .cat-sub { opacity: 1; visibility: visible; transform: translateX(0); }
.cat-sub a {
    display: block; padding: 10px 16px;
    text-decoration: none; color: #374151;
    font-size: 0.83rem; border-bottom: 1px solid #f8fafc; transition: all 0.15s;
}
.cat-sub a:hover { background: #f0fdf4; color: #15803d; padding-left: 22px; }
.cat-sub a:last-child { border-bottom: none; }

/* Ayraç çizgisi (kategoriler|menü arası) */
.hdr-nav-sep {
    width: 1px; background: #e2e8f0; margin: 8px 4px; flex-shrink: 0;
}

/* Menü linkleri */
.hdr-nav-link {
    display: flex; align-items: center; gap: 5px;
    padding: 0 12px; text-decoration: none;
    color: #475569; font-size: 0.83rem; font-weight: 600;
    transition: all 0.2s; white-space: nowrap; position: relative;
}
.hdr-nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 8px; right: 8px;
    height: 3px; background: #16a34a; border-radius: 3px 3px 0 0;
    transform: scaleX(0); transition: transform 0.2s ease; transform-origin: center;
}
.hdr-nav-link:hover { color: #15803d; background: #f0fdf4; }
.hdr-nav-link.active { color: #15803d; }
.hdr-nav-link:hover::after, .hdr-nav-link.active::after { transform: scaleX(1); }
.hdr-nav-link i { font-size: 0.9rem; }

/* Telefon (sağda) */
.hdr-nav-phone {
    margin-left: auto; display: flex; align-items: center; gap: 10px;
    padding: 0 4px 0 16px; text-decoration: none; color: #374151;
    white-space: nowrap; transition: color 0.2s;
    border-left: 1px solid #e2e8f0;
}
.hdr-nav-phone:hover { color: #15803d; }
.hdr-phone-icon {
    width: 34px; height: 34px; background: #16a34a; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1rem; flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(22,163,74,0.4);
}
.hdr-phone-texts { display: flex; flex-direction: column; line-height: 1.2; }
.hdr-phone-texts small { font-size: 0.65rem; color: #94a3b8; }
.hdr-phone-texts span { font-size: 0.86rem; font-weight: 800; color: #1e293b; }

/* ─────────────────────────────────────
   MOBİL PANEL (sağdan kayar)
───────────────────────────────────── */
#mobileOverlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.55);
    z-index: 1050; opacity: 0; visibility: hidden; transition: all 0.3s;
    backdrop-filter: blur(2px);
}
#mobileOverlay.open { opacity: 1; visibility: visible; }

#mobilePanel {
    position: fixed; top: 0; right: 0; bottom: 0; width: 310px;
    background: white; z-index: 1100;
    transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto; display: flex; flex-direction: column;
    box-shadow: -8px 0 40px rgba(0,0,0,0.2);
}
#mobilePanel.open { transform: translateX(0); }

.mob-panel-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, #15803d 0%, #166534 100%);
    flex-shrink: 0;
}
.mob-panel-head-logo { display: flex; align-items: center; gap: 10px; }
.mob-panel-head-logo img { height: 36px; width: auto; filter: brightness(1.1); }
.mob-panel-head-logo span { font-size: 0.85rem; font-weight: 800; color: white; }
.mob-panel-close {
    width: 34px; height: 34px; border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.15);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; color: white; transition: all 0.2s;
}
.mob-panel-close:hover { background: rgba(255,255,255,0.3); }

.mob-search-bar {
    padding: 14px 16px; background: #f8fafc;
    border-bottom: 1px solid #e2e8f0; flex-shrink: 0;
}
.mob-search-bar-inner {
    display: flex; align-items: center; gap: 8px;
    background: white; border: 2px solid #e2e8f0;
    border-radius: 10px; padding: 9px 12px;
    transition: border-color 0.2s;
}
.mob-search-bar-inner:focus-within { border-color: #16a34a; }
.mob-search-bar-inner i { color: #94a3b8; font-size: 1rem; flex-shrink: 0; }
.mob-search-bar-inner input {
    flex: 1; border: none; background: none; outline: none;
    font-size: 0.85rem; color: #1e293b; font-family: 'Inter', sans-serif;
}

.mob-nav { flex: 1; padding: 6px 0; }

.mob-nav-link {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 20px; text-decoration: none;
    color: #374151; font-size: 0.88rem; font-weight: 500;
    transition: all 0.18s; border-left: 3px solid transparent;
}
.mob-nav-link:hover, .mob-nav-link.active {
    color: #15803d; background: #f0fdf4; border-left-color: #16a34a;
}
.mob-nav-link i { font-size: 1.1rem; width: 20px; text-align: center; color: #94a3b8; flex-shrink: 0; }
.mob-nav-link:hover i, .mob-nav-link.active i { color: #16a34a; }

.mob-cat-acc-btn {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 20px; width: 100%;
    background: none; border: none; border-left: 3px solid transparent;
    color: #374151; font-size: 0.88rem; font-weight: 600;
    font-family: 'Inter', sans-serif; cursor: pointer; transition: all 0.18s;
    text-align: left;
}
.mob-cat-acc-btn:hover, .mob-cat-acc-btn.open {
    color: #15803d; background: #f0fdf4; border-left-color: #16a34a;
}
.mob-cat-acc-btn i.icon { font-size: 1.1rem; width: 20px; text-align: center; color: #94a3b8; flex-shrink: 0; }
.mob-cat-acc-btn:hover i.icon, .mob-cat-acc-btn.open i.icon { color: #16a34a; }
.mob-cat-acc-btn .acc-label { flex: 1; }
.mob-cat-acc-btn .arr { font-size: 1rem; color: #94a3b8; transition: transform 0.3s; }
.mob-cat-acc-btn.open .arr { transform: rotate(180deg); }

.mob-cat-list { display: none; background: #f8fafc; border-bottom: 1px solid #e2e8f0; }
.mob-cat-list.open { display: block; }
.mob-cat-list a {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 20px 10px 40px; text-decoration: none;
    color: #4b5563; font-size: 0.83rem; transition: all 0.18s;
    border-bottom: 1px solid #f1f5f9;
}
.mob-cat-list a:last-child { border-bottom: none; }
.mob-cat-list a:hover { color: #15803d; padding-left: 46px; }

.mob-divider { height: 1px; background: #e2e8f0; margin: 6px 0; }

.mob-panel-foot {
    padding: 16px 20px; background: #f8fafc;
    border-top: 1px solid #e2e8f0; flex-shrink: 0;
}
.mob-contact-row {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 12px;
}
.mob-contact-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.05rem; color: white; flex-shrink: 0;
}
.mob-contact-icon.green { background: #16a34a; }
.mob-contact-icon.wa    { background: #25d366; }
.mob-contact-texts small { font-size: 0.67rem; color: #94a3b8; display: block; }
.mob-contact-texts a { text-decoration: none; font-size: 0.87rem; font-weight: 700; color: #1e293b; }
.mob-social { display: flex; gap: 8px; margin-top: 12px; }
.mob-social a {
    width: 36px; height: 36px; border-radius: 9px;
    background: white; border: 1.5px solid #e2e8f0;
    display: flex; align-items: center; justify-content: center;
    color: #64748b; font-size: 1rem; text-decoration: none; transition: all 0.2s;
}
.mob-social a:hover { background: #16a34a; border-color: #16a34a; color: white; }

/* ─────────────────────────────────────
   MOBİL ALT SEKME BARI
───────────────────────────────────── */
.mob-tab-bar {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 700;
    background: white;
    border-top: 2px solid #16a34a;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    height: 62px;
}
.mob-tab-bar-inner { display: flex; height: 100%; }
.mob-tab-item {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 3px;
    text-decoration: none; color: #94a3b8;
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.03em;
    transition: color 0.2s; position: relative;
}
.mob-tab-item i { font-size: 1.4rem; }
.mob-tab-item:hover, .mob-tab-item.active { color: #15803d; }
.mob-tab-item.active i { filter: drop-shadow(0 0 4px rgba(22,163,74,0.5)); }

/* Sepet sekmesi vurgulu */
.mob-tab-cart {
    background: linear-gradient(180deg, #16a34a 0%, #15803d 100%);
    color: white !important; border-radius: 16px 16px 0 0; margin: 0 6px;
}
.mob-tab-cart:hover { background: #15803d; color: white !important; }

.mob-tab-badge {
    position: absolute; top: 5px; right: calc(50% - 16px);
    background: #ef4444; color: white;
    width: 17px; height: 17px; border-radius: 50%;
    font-size: 0.58rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid white;
}

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 960px) {
    .hdr-topbar  { display: none; }
    .hdr-nav     { display: none; }
    .hdr-search  { display: none; }
    .hdr-sites-btn .btn-label { display: none; }
    .hdr-sites-btn { padding: 8px 10px; }
    .hdr-hamburger { display: flex; }
    .mob-tab-bar { display: block; }
    main, body > footer { padding-bottom: 62px; }
}

@media (max-width: 680px) {
    .hdr-main-inner { padding: 0 14px; gap: 10px; }
    .hdr-logo { padding: 5px 10px 5px 6px; gap: 7px; }
    .hdr-logo img { height: 38px; }
    .hdr-logo-text strong { font-size: 0.72rem; }
    .hdr-logo-text small  { display: none; }
    .hdr-cart .hdr-cart-info { display: none; }
    .hdr-cart { padding: 0 14px; }
    .hdr-sites-btn { display: none; }
}

@media (max-width: 420px) {
    .hdr-logo-text { display: none; }
    .hdr-logo { padding: 6px; border-radius: 10px; }
}
