.item-in-shop {
    height: 400px;
    width: 210px;
    position: relative;
    background-image: url(../images/global/shop.webp);
}

.item-in-shop:hover .item-wp-shop img {
    transform: rotate(5deg) scale(1.2);
}

.item-in-shop img {
    transition: transform 0.3s, scale 0.3s;
}

.item-name-shop {
	position: relative;
    z-index: 10;
    height: 215px;
    text-align: left;
    overflow: hidden;
    padding: 5px 15px;
    box-sizing: border-box;
    font-size: 14px;
}

.item-name-shop span {
	margin: auto;
	display: block;
	font-size: 16px;
}

.item-shop {
    margin: 20px;
}

.btn {
    position: absolute;
    top: 160px;
    left: calc((100% - 125px) / 2);
}

.btn a {
    padding: 8px 23px;
    margin: auto;
    font-weight: bold;
    height: auto;
    width: auto;
}

.item-shop-category {
    font-weight: bold;
}

.item-shop-stock {
    font-weight: normal;
    text-align: center;
    top: 100px;
    position: absolute;
}

.item-shop-price {
    font-weight: normal;
    text-align: center;
    top: 120px;
    position: absolute;
}


.item-shop-price img {
    width: 17px;
    vertical-align: middle;
}

.item-shop-sub {
    font-weight: normal;
    text-align: center;
    top: 140px;
    position: absolute;
}

.item-shop-quality {
    font-weight: normal;
    text-align: center;
    bottom: 125px;
    position: absolute;
}

.item-wp-shop {
	  height: 185px;
	text-align: center;
}

.item-wp-shop img {
    max-width: 180px;
    margin-top: 30px;
    max-height: 135px;
}


/* ======================== */


.cards-row {
    margin: 40px 0;
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.card {
    margin: 10px 0;
	border: 1px solid rgb(8, 112, 223);
	background: rgba(0, 0, 0, 0.3);
	border-radius: 12px;
	padding: 20px;
	width: 195px;
	text-align: center;
	height: 265px;
}

.card h3 {
    height: 40px;
}

.card-image img {
	border-radius: 10px;
	margin: 10px 0;
	max-height: 140px;
}

.amount {
    font-size: 24px;
    font-weight: bold;
}

.stock {
	font-size: 14px;
	margin: 0;
	text-align: left;
	color: gray;
}

.stock.empty {
    margin-bottom: 44px;
}

.buy {
    background-color: #29a51d;
    border: none;
    border-radius: 8px;
    color: white;
    padding: 2px 40px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    letter-spacing: 2px;
}

.buy span {
    font-size: 18px;
    vertical-align: middle;
    padding-right: 5px;
}

.price {
	margin-top: 10px;
	border-radius: 20px;
	border: 1px solid rgb(8, 112, 223);
	top: 4px;
	position: relative;
	background: #1a1f2d;
	color: white;
	padding: 5px 10px;
	font-weight: bold;
	left: 50%;
	transform: translateX(-50%);
	font-size: 14px;
	width: 160px;
}

.price img {
    width: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

.exchange-row {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.exchange-card {
	background-color: #0d2a47;
	padding: 20px;
	border-radius: 12px;
	text-align: center;
	width: 250px;
}

.exchange-card img {
	width: 20px;
	vertical-align: middle;
	margin: 0 5px;
}

.exchange {
	margin-top: 10px;
	background-color: #16c172;
	border: none;
	border-radius: 8px;
	color: white;
	padding: 10px 20px;
	cursor: pointer;
}