/* Shared store layout — header, nav, footer */
.store-body {
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: #111;
}

.store-header {
    border-bottom: 1px solid #eee;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.store-header__inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.65rem 1rem;
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
}

@media (max-width: 991px) {
    .store-header__inner {
        justify-content: center;
        min-height: 48px;
    }

    .store-header__menu {
        position: absolute;
        left: 0.25rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .store-header__actions {
        position: absolute;
        right: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
    }
}

.store-header__logo {
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 0.14em;
    color: #111;
    text-decoration: none;
    white-space: nowrap;
}

.store-header__logo:hover {
    color: #111;
}

.store-header__menu {
    color: #111;
    padding: 0;
    text-decoration: none;
}

.store-header__search {
    flex: 1;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}

.store-header__search input {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 0.45rem 2.5rem 0.45rem 0.85rem;
    font-size: 0.85rem;
    background: #fafafa;
}

.store-header__search input:focus {
    outline: none;
    border-color: #bbb;
    background: #fff;
}

.store-header__search button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border: none;
    background: none;
    padding: 0 0.75rem;
    color: #666;
    cursor: pointer;
}

.store-header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    flex-shrink: 0;
}

.store-header__login {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #111;
    text-decoration: none;
}

.store-header__login:hover {
    color: #e85d04;
}

.store-header__icon {
    color: #111;
    font-size: 1.1rem;
    position: relative;
    text-decoration: none;
    line-height: 1;
}

.store-header__icon:hover {
    color: #e85d04;
}

.store-header__badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #e85d04;
    color: #fff;
    font-size: 0.6rem;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-nav {
    border-bottom: 1px solid #eee;
    background: #fff;
}

.store-nav__list {
    list-style: none;
    margin: 0;
    padding: 0.5rem 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2.5rem;
    justify-content: center;
    max-width: 1320px;
    margin-inline: auto;
}

.store-nav__list li {
    margin: 0;
    padding: 0;
}

.store-nav__list a {
    color: #222;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: capitalize;
    display: inline-block;
    padding: 0.15rem 0;
}

.store-nav__list a:hover {
    color: #e85d04;
}

.store-mobile-nav {
    margin: 0;
    padding: 0;
}

.store-mobile-nav a {
    display: block;
    padding: 0.6rem 0;
    font-weight: 600;
    color: #222;
    text-decoration: none;
}

.store-mobile-nav a:hover {
    color: #e85d04;
}

.store-footer {
    background: #f8f8f8;
    border-top: 1px solid #eee;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #666;
}
