.shop-scene-item-container {
    position: absolute;
    top: 20px; 
    bottom: 20px;
    left: 20px;
    right: 20px;

    display: flex;
    flex-wrap: wrap;

    justify-content: center; 
    align-content: center; 
    
    gap: 15px; 
}

.shop-scene-item {
    position: relative;

    width: calc(30% - 8px); 
    height: calc(30% - 8px);
    
    background-color: rgba(255, 255, 255, 0.05);
    background-position: center 35%; 
    background-repeat: no-repeat;
    background-size: 128px; 
    
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: 1px solid #000;
    box-sizing: border-box;


    image-rendering: pixelated;
    backdrop-filter: blur(25px);
    cursor: pointer;
    transition: 0.1s;
    box-shadow: 4px 4px #222;
}

.shop-scene-egg { background-image: url("../assets/images/icons/egg.png"); }

.shop-scene-item:hover { 
    background-color: rgba(163, 54, 53, 0.15);
    outline: 1px solid var(--red);
}

.shop-scene-purchase {
    position: absolute;
    bottom: 6px;
    left: 6px;
    right: 6px;
    height: 30px; 
    
    background: var(--red);
    color: var(--white);
    border: 1px solid #000;
    box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.2);
    
    text-align: center;
    line-height: 32px;
    font-size: 11px; 
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 1px 1px 0px #000;
    
    cursor: pointer;
}

.dp-scene-prompt {
	position: absolute;
	top: 14px;
	width: 100%;
	text-align: center;
	color: var(--white);
	line-height: 12px;
	font-size: 10px;
	text-shadow: 1px 1px 0px #000;
}

.dp-scene-pokemon-name {
	position: absolute;
	top: 42px;
	width: 100%;
	text-align: center;
	font-size: 10px;
	text-shadow: 1px 1px 0px #000;
}

.dp-scene-image {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	background-position: center;
	background-repeat: no-repeat;
}
