.row {
	flex-wrap: wrap !important;
}
/* Simple transition for the toggle switch */
.toggle-dot {
	transition: transform 0.3s ease-in-out;
}
/* Animation for price changes */
.price-update {
	animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.pricing-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: none;
	/*border-radius: 15px;*/
	overflow: hidden;
}

	.pricing-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 10px 25px rgba(0,0,0,0.15);
	}

	.pricing-card.selected {
		border-color: #FF1493;
		box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
	}

.plan-image {
	height: 160px;
	object-fit: cover;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	/*background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);*/
	background-color: #000;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.7rem;
	font-weight: bold;
}

.pricing-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 2rem 1.5rem;
	text-align: center;
}

	.pricing-header.popular {
		background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	}

	.pricing-header.sparta {
		background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	}

.price {
	/*font-size: 3rem;
	font-weight: bold;
	margin: 0;*/
}

.price-display {
	font-size: 2.5rem;
	font-weight: 900;
	color: #212529;
}

.price-period {
	color: #6c757d;
	font-size: 1rem;
	opacity: 0.8;
}

.price-amount {
	font-size: 2rem;
}

.feature-list {
	padding-top: 0;
	padding: 2rem 1.5rem;
}

.feature-item {
	padding: 0.5rem 0;
	border-bottom: 1px solid #f8f9fa;
}

	.feature-item:last-child {
		border-bottom: none;
	}

.feature-icon {
	color: #FF1493;
	margin-right: 0.75rem;
	margin-top: 0.125rem;
	flex-shrink: 0;
}

	.feature-icon.unavailable {
		color: #dc3545;
	}

.feature-text {
	color: #495057;
	font-size: 0.9rem;
	line-height: 1.5;
}

.feature-highlight {
	font-weight: 600;
	color: #FF1493;
}

.btn-select {
	font-weight: 600;
	padding: 0.75rem 1.5rem;
	transition: all 0.2s ease;
}

.btn-selected {
	background-color: #FF1493;
	border-color: #FF1493;
	color: white;
}

	.btn-selected:hover {
		background-color: #e6127f;
		border-color: #e6127f;
	}

.popular-badge {
	position: absolute;
	top: -10px;
	right: 20px;
	background: #ff6b6b;
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: bold;
}

.plan-badges {
	position: absolute;
	top: 1rem;
	right: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.badge-self {
	background-color: #0d6efd;
	color: white;
	font-size: 0.75rem;
	padding: 0.25rem 0.5rem;
	border-radius: 0.25rem;
	/*z-index: 1;*/
}

.badge-gift {
	background-color: #FF1493;
	color: white;
	font-size: 0.75rem;
	padding: 0.25rem 0.5rem;
	border-radius: 0.25rem;
	/*z-index: 1;*/
}

.btn-pricing {
	border-radius: 25px;
	padding: 0.75rem 2rem;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.billing-toggle {
	background: #f8f9fa;
	border-radius: 50px;
	padding: 0.5rem;
	margin: 2rem 0;
}

.toggle-option {
	padding: 0.5rem 1.5rem;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
}

	.toggle-option.active {
		background: white;
		box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	}

.hero-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 4rem 0;
}

.section-title {
	color: #212529;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

	.section-title i {
		color: #FF1493;
	}
