.shop-scroll {
	overflow: scroll;
	position: relative;
	width: 100%;
	height: 300px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 0px;
	box-sizing: border-box;
	scrollbar-face-color: #ffbb40;
	scrollbar-shadow-color: #ffbb40;
	scrollbar-highlight-color: #ffbb40;
	scrollbar-3dlight-color: #ffbb40;
	scrollbar-darkshadow-color: #ffbb40;
	scrollbar-track-color: #ffbb40;
	scrollbar-arrow-color: #ffbb40;
}

.shop-container {
    background: url('../assets_img/background.jpg') no-repeat center;
    background-size: 100% 100%;
    width: 98%;
    height: auto;
    margin: 0 auto 10px auto;
    padding: 5px;
    border-radius: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #3F7FBF;
}

.shop-wrapper {
    position: relative;
    width: 100%;
    height: auto;    
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0px;
}

.section-login-id-box-message {
	background-image:linear-gradient(180deg,rgba(201,140,101,.15),rgba(176,103,69,.15));
	width: 100%;
	height: auto;
	margin-top: 10px;
	padding: 8px;
	color: #f3b583;
	font-size: 14px;
	font-family: Roboto;
	text-align: left;
}
.shop-section {
	margin-top: 10px;
}
.shop-item {
	background-image: linear-gradient(to bottom, #1B296A , #22568F);
	width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	padding: 5px;
	border: 1px solid #3F7FBF;
	display: grid;
	grid-template-columns: 20% 50% 30%;
	gap: 10px;
	align-items: center;
	flex-shrink: 0;
}
.shop-item-title {
	color: #fff;
	font-size: 14px;
	font-family: Roboto;
	text-align: left;
	margin-bottom: 5px;
	border-bottom: 1px solid #5F79C3;
	padding-bottom: 3px;
}
.shop-item-description {
    background-image: linear-gradient(to right, #FBDA4D, #66000000);
	width: auto;
	height: auto;
	padding: 2px;
	color: #fff;
	font-size: 14px;
	font-family: Roboto;
	text-align: center;
    border-left: 2px solid yellow;
}
.shop-item-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}
.shop-item-image {
    background: url('../assets_img/bg-item.png') no-repeat center center;
    background-size: 100% 100%;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	border: 1px solid #fff;
	object-fit: cover;
}
@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.shop-item-image {
    --angle: 360deg;
    border-image: linear-gradient(var(--angle), #00c4de, #1b56ff, #00c4de, #1b56ff) 1;
    animation: 5s rotate linear infinite;
}

@keyframes rotate {
    to {
        --angle: 0deg;
    }
}
.shop-item button {
	background: url('../assets_img/button.png') no-repeat center center;
	background-size: 100% 100%;
	width: 80%;
	height: auto;
	min-height: 30px;
	margin: 0 0 0 0px;
	padding: 5px 5px;
	color: #fff;
    font-size: 14px;
    font-family: Roboto;
	font-weight: 400;
	text-align: center;
	border: none;
	outline: none;
	border-radius: 0;
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 6px;
	box-sizing: border-box;
}

/* Reset semua elemen dalam button */
.shop-item button * {
	box-sizing: border-box;
}

.shop-item button img {
    background: none;
	width: 18px;
	height: 18px;
	border: none !important;
	object-fit: contain;
	flex-shrink: 0;
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
}
.shop-item button div {
	line-height: 1 !important;
	margin: 0 !important;
	padding: 0 !important;
	font-size: inherit;
	font-weight: inherit;
	display: flex !important;
	align-items: center !important;
}

.event-img {
	width: 88%;
	margin-left: 5.8%;
	animation: bounce .0s infinite alternate;
}
.shop-item-desc {
background-image: linear-gradient(to right, #3C5F88, #66000000);
width: auto;
height: auto;
color: #fff;
font-size: 12px;
font-weight: 500;
font-family: Roboto;
text-align: left;
border-left: 2px solid #5F79C3;
padding: 5px;
border-radius: 0px;
}
@media only screen and (min-width: 300px) and (max-width: 388px) {
.shop-scroll { 
  height: 260px;
  gap: 5px;
  padding: 0px;
}

.shop-item-desc,
.shop-item-title
{ font-size: 10px; }

.shop-item button {
	width: 75%;
	min-height: 25px;
	padding: 5px 5px;
    font-size: 10px;
	font-weight: 400;
	gap: 6px;
}
.shop-item button img {
	width: 13px;
	height: 13px;
}

}
@media only screen and (min-width: 388px) and (max-width: 600px) {


}