/* ── Header 10 ── */
.sh10-topbar {
    height: 6px;
    background: #111;
}

/* Marka satırı */
.sh10-brand {
    background: var(--sb-card-color, #fff);
}

.sh10-logo {
    flex-shrink: 0;
}

/* Alternatif tasarım 2: yükseltilmiş (elevated) kart + sağda dairesel degrade buton */
.sh10-search {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    max-width: 640px;
    padding: 5px;
    border: 1px solid var(--sb-border-color, #e2e8f0);
    border-radius: 16px;
    background: var(--sb-card-color, #fff);
    box-shadow: 0 10px 26px rgba(17, 24, 39, .08);
    transition: box-shadow .18s ease, border-color .18s ease;
}

.sh10-search:focus-within {
    border-color: var(--sb-general-color, #1E40AF);
    box-shadow: 0 14px 34px rgba(17, 24, 39, .14);
}

.sh10-search-input {
    flex: 1;
    min-width: 0;
    order: 1;
    border: none;
    background: none;
    padding: 11px 10px 11px 16px;
    font-size: .92rem;
    color: var(--sb-font-heading-color, #111);
}

.sh10-search-input:focus {
    outline: none;
}

.sh10-search-btn {
    order: 2;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: linear-gradient(135deg,
        var(--sb-general-color, #1E40AF),
        color-mix(in srgb, var(--sb-general-color, #1E40AF) 65%, #000));
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: transform .15s ease, filter .15s ease;
}

.sh10-search-btn:hover {
    transform: scale(1.06);
    filter: brightness(1.06);
}

/* Ürün arama sonuçları (dropdown) */
.sh10-search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    max-height: 420px;
    overflow-y: auto;
    background: var(--sb-card-color, #fff);
    border: 1px solid var(--sb-border-color, #e2e8f0);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(17, 24, 39, .12);
    z-index: 500;
    padding: 8px;
}

.sh10-search-empty {
    padding: 20px;
    text-align: center;
    color: #6b7280;
    font-size: .88rem;
}

.sh10-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: background .15s ease;
}

.sh10-search-item:hover,
.sh10-search-item.is-active {
    background: var(--sb-primary, #f7f7f9);
}

.sh10-search-item-thumb {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--sb-border-color, #e2e8f0);
}

.sh10-search-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sh10-search-item-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sh10-search-item-title {
    font-size: .88rem;
    font-weight: 600;
    color: var(--sb-font-heading-color, #111);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sh10-search-item-price {
    font-size: .82rem;
    font-weight: 700;
    color: var(--sb-general-color, #1E40AF);
}

.sh10-search-item-price del {
    margin-right: 6px;
    font-weight: 400;
    color: #94a3b8;
}

.sh10-search-item-price ins {
    text-decoration: none;
}

.sh10-search-item.is-outofstock .sh10-search-item-thumb {
    opacity: .5;
}

.sh10-infos {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 24px;
    padding-left: 24px;
    border-left: 1px solid var(--sb-border-color, #e2e8f0);
}

.sh10-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    white-space: nowrap;
}

.sh10-info-item > i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sb-primary, #f7f7f9);
    font-size: 1.2rem;
    color: var(--sb-general-color, #1E40AF);
    transition: background .18s ease, transform .18s ease;
}

.sh10-info-item:hover > i {
    background: color-mix(in srgb, var(--sb-general-color, #1E40AF) 14%, transparent);
    transform: translateY(-2px);
}

.sh10-info-item span {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.sh10-info-item strong {
    font-size: .82rem;
    font-weight: 600;
    color: var(--sb-font-heading-color, #111);
}

.sh10-info-item small {
    font-size: .82rem;
    font-weight: 700;
    color: var(--sb-general-color, #1E40AF);
}

/* İkinci satır: kategoriler + menü + aksiyonlar */
.sh10-nav {
    background: var(--sb-primary, #f7f7f9);
    padding: 6px 0;
}

.sh10-nav .container {
    gap: 20px;
}

.sh10-categories-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px 10px 10px;
    border: none;
    border-radius: 50px;
    background: var(--sb-general-color, #1E40AF);
    color: #fff;
    font-weight: 700;
    font-size: .88rem;
    white-space: nowrap;
    cursor: pointer;
    transition: filter .15s ease;
}

.sh10-categories-btn:hover {
    filter: brightness(1.08);
}

.sh10-categories-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    font-size: .95rem;
}

.sh10-categories-menu {
    max-height: 420px;
    overflow-y: auto;
    border: 1px solid var(--sb-border-color, #e2e8f0);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(17, 24, 39, .12);
    padding: 8px;
}

.sh10-categories-menu .dropdown-item {
    border-radius: 8px;
    padding: 9px 14px;
    font-size: .88rem;
}

.sh10-categories-menu .dropdown-item:hover {
    background: var(--sb-primary, #f7f7f9);
    color: var(--sb-general-color, #1E40AF);
}

.sh10-menu {
    flex: 1;
}

.sh10-menu-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sh10-menu-list > li > a {
    display: block;
    padding: 16px 0;
    text-decoration: none;
    transition: color .15s ease;
    font-family: var(--sb-font-main-menu-family);
    font-weight: var(--sb-font-main-menu-weight);
    font-style: var(--sb-font-main-menu-style);
    font-size: var(--sb-font-main-menu-size);
    line-height: var(--sb-font-main-menu-line-height);
    letter-spacing: var(--sb-font-main-menu-letter-spacing);
    text-transform: var(--sb-font-main-menu-transform);
    color: var(--sb-font-main-menu-color);
}

.sh10-menu-list > li > a:hover,
.sh10-menu-list > li.current-menu-item > a {
    color: var(--sb-general-color, #1E40AF);
}

.sh10-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.sh10-action-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--sb-border-color, #e2e8f0);
    background: var(--sb-primary, #f7f7f9);
    color: #374151;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background .18s ease, color .18s ease, transform .18s ease, border-color .18s ease;
}

.sh10-action-icon:hover {
    background: color-mix(in srgb, var(--sb-general-color, #1E40AF) 14%, transparent);
    border-color: var(--sb-general-color, #1E40AF);
    color: var(--sb-general-color, #1E40AF);
    transform: translateY(-2px);
}

.sh10-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--sb-general-color, #1E40AF);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    border-radius: 50px;
    line-height: 1;
    box-shadow: 0 0 0 2px var(--sb-card-color, #fff);
}

.sh10-cart-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    border-radius: 50px;
    padding: 10px 18px;
    background: var(--sb-general-color, #1E40AF);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: filter .15s ease;
}

.sh10-cart-btn:hover {
    color: #fff;
    filter: brightness(1.08);
}

.sh10-cart-btn i {
    font-size: 1.05rem;
}

.sh10-cart-total {
    line-height: 1;
}

.sh10-badge--cart {
    top: -6px;
    right: -6px;
    background: #fff;
    color: var(--sb-general-color, #1E40AF);
    box-shadow: 0 0 0 2px var(--sb-general-color, #1E40AF);
}

/* Mobil */
.sh10-mobile {
    background: var(--sb-card-color, #fff);
    border-bottom: 1px solid var(--sb-border-color, #e2e8f0);
}

.sh10-cart-btn--mobile {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
}

.sh10-cart-btn--mobile .sh10-cart-total {
    display: none;
}
