/* /frontend/css/modal-pay.css - 20260808 - 11-00 */
#pay-modal-overlay .pay-modal-content-wrapper {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 15px 20px 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
}
.guru-support-bar {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
	width: 100%;
	margin-top: 0;
	margin-bottom: 20px;
	padding: 5px 0;
	font-family: sans-serif;
	font-size: 21px;
	line-height: 1.2;
	color: #ffffff;
	cursor: default;
}
.guru-support-label {
	color: #ffffff;
	font-weight: bold;
	display: inline-flex;
	align-items: center;
}
a.guru-support-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none !important;
	color: #FFFF00 !important;
	font-weight: bold;
	padding: 4px 6px;
	border-radius: 6px;
	transition: padding 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
a.guru-support-link:hover {
	background-color: #ffffff;
	color: #000000 !important;
	transform: scale(1.05);
}
.guru-support-separator {
	color: rgba(255, 255, 255, 0.3);
	font-weight: 300;
	user-select: none;
}
.pay-modal-subtitle {
	font-size: 18px;
	color: #ccc;
	text-align: center;
	margin-bottom: 30px;
	max-width: 900px;
	line-height: 1.6;
	flex-shrink: 0;
}
.tariff-group-title {
	color: #ececf1;
	font-size: 26px;
	font-weight: bold;
	text-align: center;
	width: 100%;
	max-width: 900px;
	margin-bottom: 25px;
	margin-top: 15px;
	border-top: 1px solid #333;
	padding-top: 30px;
}
.tariff-group-title:first-of-type {
	margin-top: 0;
	border-top: none;
	padding-top: 0;
}
.tariff-container {
	display: flex;
	flex-direction: row;
	gap: 20px;
	align-items: stretch;
	justify-content: center;
	width: 100%;
	margin-bottom: 30px;
	flex-shrink: 0;
	flex-wrap: wrap;
}
.tariff-card {
	display: flex;
	flex-direction: column;
	flex: 1 1 280px;
	background-color: #343541;
	border: 1px solid #555;
	border-radius: 12px;
	padding: 20px;
	transition: border-color 0.2s ease, transform 0.2s ease;
	max-width: 380px;
	box-sizing: border-box;
}
.tariff-card:hover {
	border-color: #888;
	transform: translateY(-5px);
}
.tariff-name {
	font-size: 22px;
	font-weight: bold;
	margin: 0 0 10px 0;
}
.tariff-price {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: baseline;
	margin: 10px 0 20px 0;
	line-height: 1;
	color: #fff;
	width: 100%;
}
.price-currency {
	font-size: 42px;
	font-weight: 500;
	margin-right: 2px;
}
.price-value {
	font-size: 42px;
	font-weight: 700;
	letter-spacing: -1px;
}
.price-period {
	font-size: 14px;
	font-weight: normal;
	color: #aaa;
	flex-basis: 100%;
	margin-left: 0;
	margin-top: 5px;
}
.tariff-button {
	width: 100%;
	padding: 14px;
	border-radius: 8px;
	border: 1px solid #555;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	margin-top: auto;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.tariff-button:disabled {
	cursor: default;
	opacity: 0.6;
}
.tariff-button.primary {
	background-color: #ececf1;
	color: #202123;
}
.tariff-button.primary:hover:not(:disabled) {
	background-color: #fff;
}
.tariff-button.secondary {
	background-color: transparent;
	color: #ececf1;
}
.tariff-button.secondary:hover:not(:disabled) {
	background-color: rgba(255, 255, 255, 0.1);
}
.tariff-button.current-plan {
	background-color: #2196F3 !important;
	color: white !important;
	border: 1px solid #2196F3 !important;
	opacity: 1 !important;
	cursor: default;
}
.tariff-button.green {
	background-color: #28a745;
	color: #fff;
	border-color: #28a745;
}
.tariff-button.green:hover:not(:disabled) {
	background-color: #218838;
	border-color: #218838;
}
.tariff-features {
	list-style: none;
	padding: 0;
	margin: 20px 0;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex-grow: 1;
}
.tariff-features li::before {
	content: '✓ ';
	color: #19c37d;
	font-weight: bold;
	line-height: 1.5;
}
.payment-method-card {
	cursor: pointer;
	gap: 12px;
	padding: 30px 15px;
	justify-content: flex-start;
	text-align: center;
	flex: 1 1 280px;
	max-width: 350px;
	box-sizing: border-box;
}
.payment-method-card .tariff-name {
	color: white;
	font-weight: bold;
	font-size: 20px;
	margin: 0;
	order: 1;
}
.payment-method-card:hover .tariff-name {
	color: yellow;
}
.payment-method-card .payment-method-icon {
	order: 2;
	width: 100%;
	max-width: 180px;
	height: auto;
	object-fit: contain;
	margin: 0 auto;
	border-radius: 8px;
}
.payment-method-card p {
	order: 3;
	margin: 0;
	font-size: 15px;
	color: #ccc;
	line-height: 1.4;
	min-height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.payment-method-card:hover p {
	color: white;
}
@media (max-width: 650px) {
	.tariff-card, .payment-method-card {
		flex: 1 1 100%;
		max-width: 100%;
	}
	.guru-support-bar {
		font-size: 16px;
		flex-direction: column;
		gap: 8px;
	}
	.guru-support-separator {
		display: none;
	}
}