/* Shop Panel Component Styles */
.asc-shop-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    color: var(--text-primary);
}

.asc-shop-panel__categories {
    padding: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.asc-shop-panel__tabs-container {
    display: flex;
    justify-content: center;
}

.asc-shop-panel__tabs {
    display: flex;
    gap: 0.5rem;
    background: var(--glass-backdrop);
    border-radius: var(--radius-sm);
    padding: 0.25rem;
}

.asc-shop-panel__tab-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.asc-shop-panel__tab-button--active {
    background: var(--primary-blue);
    color: var(--text-primary);
}

.asc-shop-panel__tab-button:hover:not(.asc-shop-panel__tab-button--active) {
    background: var(--glass-backdrop);
    color: var(--text-primary);
}

.asc-shop-panel__tab-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asc-shop-panel__items-icon::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("/_content/Ascend.Shared.UI/images/icons/potion.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.asc-shop-panel__skills-icon::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("/_content/Ascend.Shared.UI/images/icons/skill.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.asc-shop-panel__cosmetics-icon::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("/_content/Ascend.Shared.UI/images/icons/cosmetic.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.asc-shop-panel__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    overflow: hidden;
}

.asc-shop-panel__category-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.asc-shop-panel__items-container {
    flex: 1;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.asc-shop-panel__items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    padding-bottom: 1rem;
}

@media (max-width: 768px) {
    .asc-shop-panel__items {
        grid-template-columns: 1fr;
    }
}