/* Shop Item Component Styles */
.asc-shop-item {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-small);
    transition: var(--transition-medium);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--glass-border);
}

.asc-shop-item:hover:not(.asc-shop-item--unavailable) {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
    background: var(--bg-card-hover);
}

.asc-shop-item--unavailable {
    opacity: 0.7;
    cursor: not-allowed;
}

.asc-shop-item__image {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.asc-shop-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.asc-shop-item__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.asc-shop-item__info {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.asc-shop-item__name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.asc-shop-item__description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    flex: 1;
}

.asc-shop-item__price {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    color: var(--success-green);
}

.asc-shop-item__price--too-expensive {
    color: var(--error-red);
}

.asc-shop-item__action {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--glass-border);
}