.card-service .card-bg-img {
	position: relative;
}

.remaining-quantity {
	position: absolute;
	bottom: 12px;
	right: 12px;
	padding: 6px 12px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	min-width: 90px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	line-height: 1.2;
}

.remaining-quantity-inline {
	position: static;
	min-width: 0;
}

.quantity-soldout::before,
.quantity-available::before,
.quantity-infinite::before {
	margin-right: 4px;
	font-size: 12px;
}

.quantity-soldout::before {
	content: "⛔ ";
}

.quantity-available::before {
	content: "✅ ";
}

.quantity-infinite::before {
	content: "♾️ ";
}

.quantity-soldout {
	background-color: #f44336;
	border: 1px solid #d32f2f;
}

.quantity-available {
	background-color: #2196F3;
	border: 1px solid #1976D2;
}

.quantity-infinite {
	background-color: #4CAF50;
	border: 1px solid #388E3C;
}

.rcon-purchases-wrap {
	margin-top: 24px;
}

.rcon-purchases-wrap .rcon-header-block {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.rcon-purchases-wrap .icon-square {
	width: 40px;
	height: 40px;
	background: var(--bs-primary);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 16px;
}

.rcon-purchases-wrap .rcon-main-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
	margin: 0;
}

.rcon-purchases-wrap .rcon-subtitle {
	font-size: 0.85rem;
	color: rgb(165, 169, 180);
	margin: 2px 0 0;
}

.rcon-purchases-wrap .tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.rcon-purchases-wrap .tab-btn {
	padding: 8px 16px;
	background: rgb(49, 53, 65);
	border: 1px solid transparent;
	color: rgb(165, 169, 180);
	cursor: pointer;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 500;
	transition: background 0.2s ease, color 0.2s ease;
}

.rcon-purchases-wrap .tab-btn:hover {
	color: #fff;
}

.rcon-purchases-wrap .tab-btn.active {
	background: var(--bs-primary);
	color: #fff;
}

.rcon-purchases-wrap .rcon-empty-state,
.rcon-purchases-list .rcon-empty-state {
	text-align: center;
	padding: 32px 16px;
	color: rgb(165, 169, 180);
}

.rcon-purchases-wrap .rcon-empty-icon {
	font-size: 24px;
	margin-bottom: 8px;
	opacity: 0.7;
}

.rcon-purchases-wrap .rcon-renew-btn,
.rcon-purchases-profile .rcon-renew-btn {
	background: var(--bs-primary);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 6px 12px;
	font-size: 0.875rem;
	cursor: pointer;
}

.rcon-purchases-wrap .rcon-renew-btn:hover,
.rcon-purchases-profile .rcon-renew-btn:hover {
	opacity: 0.9;
}

.rcon-purchases-wrap .rcon-expired-row {
	opacity: 0.85;
}

.purchase-history-container .history-stats {
	background: rgb(49, 53, 65);
	padding: 12px;
	border-radius: 8px;
	margin-bottom: 12px;
	text-align: center;
	color: rgb(165, 169, 180);
}

.purchase-history-list {
	display: grid;
	gap: 10px;
}

.purchase-history-list .history-item {
	display: grid;
	grid-template-columns: 2fr 1fr 2fr 1fr;
	gap: 12px;
	padding: 16px;
	background: rgb(49, 53, 65);
	border-radius: 10px;
	align-items: center;
}

.purchase-history-list .history-item.active {
	border-left: 4px solid #28a745;
}

.purchase-history-list .history-item.expired {
	border-left: 4px solid #dc3545;
}

.purchase-history-list .history-item.permanent {
	border-left: 4px solid #007bff;
}

.purchase-history-list .history-product strong {
	color: #fff;
	display: block;
	margin-bottom: 4px;
}

.purchase-history-list .history-tarif,
.purchase-history-list .history-dates {
	color: rgb(165, 169, 180);
	font-size: 0.9em;
}

.purchase-history-list .history-price {
	font-weight: 600;
	color: #ffc107;
	text-align: center;
}

.purchase-history-list .history-status {
	text-align: center;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.85em;
	font-weight: 600;
	white-space: nowrap;
}

.purchase-history-list .history-status.active {
	background: #28a745;
	color: #fff;
}

.purchase-history-list .history-status.expired {
	background: #dc3545;
	color: #fff;
}

.purchase-history-list .history-status.permanent {
	background: #007bff;
	color: #fff;
}

.loading-history {
	text-align: center;
	padding: 32px;
	color: rgb(165, 169, 180);
}

@media (max-width: 992px) {
	.purchase-history-list .history-item {
		grid-template-columns: 1fr 1fr;
	}

	.purchase-history-list .history-dates {
		grid-column: span 2;
	}
}

@media (max-width: 576px) {
	.purchase-history-list .history-item {
		grid-template-columns: 1fr;
	}

	.purchase-history-list .history-dates {
		grid-column: span 1;
	}
}

.rcon-3d-side-controls > label {
	color: #fff;
	font-weight: 600;
	font-size: 0.95rem;
}

.rcon-3d-panel {
	background: rgb(36, 39, 49);
	border: 1px solid rgb(35, 39, 50);
	border-radius: 8px;
	overflow: hidden;
	padding: 8px;
}

.rcon-3d-section {
	padding: 10px 12px 8px;
	margin: 4px 0 0;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.rcon-3d-row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 10px;
	margin-bottom: 6px;
	border-radius: 6px;
	background: #1a1a1a;
	border: 1px solid rgb(35, 39, 50);
	border-left: 4px solid #dad5cb;
}

.rcon-3d-row:last-child {
	margin-bottom: 0;
}

.rcon-3d-row-bg {
	border-left-color: #7f8c8d;
	position: relative;
}

.rcon-3d-row-select {
	border-left-color: #5d9eff;
}

.rcon-3d-row-range {
	border-left-color: var(--bs-primary, rgb(251, 71, 75));
}

.rcon-3d-row-action {
	border-left-color: var(--bs-primary, rgb(251, 71, 75));
	justify-content: center;
	background: rgba(251, 71, 75, 0.12);
	cursor: pointer;
	padding: 0;
}

.rcon-3d-label {
	flex: 0 0 72px;
	color: rgb(165, 169, 180);
	font-size: 12px;
	font-weight: 500;
}

.rcon-3d-swatch {
	flex: 1 1 auto;
	min-width: 0;
	height: 32px;
	border-radius: 6px;
	border: 1px solid rgb(35, 39, 50);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rcon-3d-color-native {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

.rcon-3d-link {
	flex: 0 0 auto;
	border: 0;
	background: transparent;
	color: rgb(165, 169, 180);
	font-size: 12px;
	padding: 0 4px;
	cursor: pointer;
}

.rcon-3d-link:hover {
	color: #fff;
}

.rcon-3d-select {
	flex: 1 1 auto;
	min-width: 0;
	height: 32px;
	padding: 4px 10px;
	border-radius: 6px;
	border: 1px solid #2a2a2a;
	background: #242731;
	color: #fff;
	font-size: 13px;
	outline: none;
}

.rcon-3d-select:focus {
	border-color: #5d9eff;
}

.rcon-3d-action-btn {
	width: 100%;
	border: 0;
	background: transparent;
	color: #fff;
	font-weight: 600;
	font-size: 13px;
	padding: 10px 12px;
	cursor: pointer;
	border-radius: 6px;
}

.rcon-3d-row-action:hover,
.rcon-3d-action-btn:hover {
	background: rgba(251, 71, 75, 0.2);
}

.rcon-3d-range {
	flex: 1 1 auto;
	min-width: 0;
	height: 6px;
	margin: 0;
	padding: 0;
	appearance: none;
	-webkit-appearance: none;
	background: rgb(49, 53, 65);
	border-radius: 999px;
	outline: none;
	cursor: pointer;
	accent-color: unset;
}

.rcon-3d-range::-webkit-slider-runnable-track {
	height: 6px;
	background: rgb(49, 53, 65);
	border-radius: 999px;
	border: none;
}

.rcon-3d-range::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 16px;
	height: 16px;
	margin-top: -5px;
	border-radius: 50%;
	border: 0;
	background: var(--bs-primary, rgb(251, 71, 75));
	box-shadow: 0 0 0 3px rgba(251, 71, 75, 0.2);
	cursor: pointer;
}

.rcon-3d-range::-moz-range-track {
	height: 6px;
	background: rgb(49, 53, 65);
	border-radius: 999px;
	border: none;
}

.rcon-3d-range::-moz-range-progress {
	background: transparent;
	height: 6px;
}

.rcon-3d-range::-moz-range-thumb {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 0;
	background: var(--bs-primary, rgb(251, 71, 75));
	box-shadow: 0 0 0 3px rgba(251, 71, 75, 0.2);
	cursor: pointer;
}

.rcon-3d-value {
	flex: 0 0 36px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #5d9eff;
	font-size: 12px;
	font-weight: 600;
	background: #242731;
	border: 1px solid #2a2a2a;
	border-radius: 4px;
}

/*# sourceMappingURL=primary.css.map */
