.store-page-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 0 1.5rem;
}

.store .store-page-header h1 {
    margin: 0;
}

.store-search {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
}

.store-search-field {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    gap: 0.65rem;
    min-height: 3rem;
    padding: 0 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #141414;
    box-sizing: border-box;
}

.store-search-field:focus-within {
    border-color: rgba(224, 27, 50, 0.65);
}

.store-search-field i {
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.15rem;
}

.store-search-field input,
.store-search-field input[type="search"] {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0.8rem 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-family: "Work Sans", sans-serif;
    font-size: 1rem;
    -webkit-appearance: none;
    appearance: none;
}

.store-search-field input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.store-search-field input:focus,
.store-search-field input[type="search"]:focus {
    outline: none;
    background: transparent;
}

.store-search .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    margin: 0;
    min-height: 3rem;
    padding: 0.5rem;
    flex-shrink: 0;
    white-space: nowrap;
    box-sizing: border-box;
}

.store-search-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    margin: 0;
    padding: 0.5rem;
    min-height: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #1a1a1a;
    color: rgba(255, 255, 255, 0.78);
    font-family: "Work Sans", sans-serif;
    font-size: 1rem;
    text-decoration: none;
    flex-shrink: 0;
    white-space: nowrap;
    box-sizing: border-box;
}

.store-search-clear:hover,
.store-search-clear:focus {
    border-color: #e01b32;
    color: #e01b32;
    outline: none;
}

.store-search-meta {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-family: "Work Sans", sans-serif;
}

.store-empty-state {
    padding: 3rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #141414;
    text-align: center;
}

.store-empty-state i {
    color: #e01b32;
    font-size: 2rem;
}

.store-empty-state h2 {
    margin: 0.75rem 0 0.4rem;
}

.store-empty-state p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
}

.component-store .item-display .item .desc .store-category-parent {
    position: relative;
    z-index: 2;
    margin: 0.3rem 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

@media (max-width: 767px) {
    .store {
        padding-top: 2rem;
    }

    .store-search {
        flex-direction: row;
    }
}
