.admgr-category {
	direction: rtl;
	margin: 25px 0;
	clear: both;
}

.admgr-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}

@media (max-width: 782px) {
	.admgr-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.admgr-grid {
		grid-template-columns: 1fr;
	}
}

.admgr-slot {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 10px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.admgr-slot-image-wrap {
	position: relative;
	width: 100%;
}

.admgr-slot-image-link {
	display: block;
	width: 100%;
}

.admgr-slot-image-link img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	display: block;
}

.admgr-price-badge {
	position: absolute;
	top: 8px;
	inset-inline-start: 8px;
	background: #d63638;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
	line-height: 1.6;
	box-shadow: 0 1px 4px rgba(0,0,0,.25);
	z-index: 2;
}

.admgr-slot-description {
	width: 100%;
	margin: 6px 0 0;
	font-size: 11px;
	color: #666;
	line-height: 1.6;
	text-align: center;
}

.admgr-order-btn,
.admgr-order-btn-disabled {
	display: inline-block;
	margin-top: 10px;
	padding: 8px 16px;
	background: #2271b1;
	color: #fff !important;
	text-decoration: none;
	border-radius: 4px;
	font-size: 13px;
	transition: background .15s ease;
	border: none;
	cursor: pointer;
}

.admgr-order-btn:hover {
	background: #135e96;
	color: #fff;
}

.admgr-order-btn-disabled {
	background: #c3c4c7 !important;
	color: #6b6b6b !important;
	cursor: not-allowed;
	pointer-events: none;
}
