/* Webdesigntheme Price Plugin - base structural styles
   (colors/typography/spacing are overridden by Elementor Style-tab controls) */

.wdt-pricing-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: stretch;
	width: 100%;
}

.wdt-pricing-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background-color: #ffffff;
	border: 1px solid #E4E7EC;
	border-radius: 16px;
	padding: 32px 28px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	box-shadow: 0 1px 3px rgba(16, 24, 40, 0.05);
}

.wdt-pricing-card.wdt-highlighted {
	border: 2px solid #0B3B8C;
	background-color: #ffffff;
	box-shadow: 0 12px 30px rgba(11, 59, 140, 0.12);
	transform: scale(1.02);
	z-index: 2;
}

/* Badges */
.wdt-badge {
	display: inline-block;
	align-self: flex-start;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 30px;
	margin-bottom: 18px;
}

/* Corner Ribbon (e.g. "RECOMMENDED") */
.wdt-corner-ribbon {
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
	width: max-content;
	max-width: calc(100% - 24px);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #ffffff;
	background-color: #0B3B8C;
	padding: 8px 18px;
	border-radius: 0 15px 0 12px;
	z-index: 3;
	line-height: 1;
	box-sizing: border-box;
}

.wdt-badge-level {
	background-color: #EAF0FB;
	color: #0B3B8C;
}

.wdt-badge-recommended {
	background-color: #0B3B8C;
	color: #ffffff;
}

.wdt-badge-dark {
	background-color: #1B1B1B;
	color: #ffffff;
}

/* Header */
.wdt-card-header {
	margin-bottom: 18px;
}

.wdt-card-title {
	margin: 0 0 8px 0;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 800;
	color: #101828;
}

.wdt-card-title-suffix {
	font-size: 16px;
	font-weight: 400;
	color: #98A2B3;
	margin-left: 4px;
}

.wdt-tagline-text {
	margin: 0 0 10px 0;
	font-size: 14px;
	color: #475467;
	text-decoration: underline;
}

.wdt-audience {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #475467;
}

.wdt-audience-icon {
	display: inline-flex;
	align-items: center;
	color: #0B3B8C;
	font-size: 14px;
}

.wdt-audience-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.wdt-audience-text {
	font-size: 14px;
	color: #475467;
}

/* Cost / Duration box */
.wdt-cost-duration-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #F5F7FA;
	border-radius: 10px;
	padding: 14px 18px;
	margin-bottom: 20px;
}

.wdt-box-col {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.wdt-box-col-right {
	align-items: flex-end;
	text-align: right;
}

.wdt-box-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #98A2B3;
}

.wdt-box-value {
	font-size: 16px;
	font-weight: 700;
}

.wdt-cost-value {
	color: #0B3B8C;
}

.wdt-duration-value {
	color: #101828;
}

/* Description */
.wdt-description {
	font-size: 14px;
	line-height: 1.6;
	color: #475467;
	margin: 0 0 20px 0;
}

/* Divider */
.wdt-divider {
	border: none;
	border-top: 1px dashed #E4E7EC;
	margin: 0 0 18px 0;
}

/* Features list */
.wdt-features-list {
	list-style: none;
	margin: 24px 0 24px 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex-grow: 1;
}

.wdt-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.wdt-feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 16px;
	line-height: 1;
	margin-top: 2px;
}

.wdt-feature-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.wdt-feature-icon.wdt-active {
	color: #12B76A;
}

.wdt-feature-icon.wdt-inactive {
	color: #D0D5DD;
}

.wdt-feature-text {
	font-size: 14px;
	color: #344054;
}

/* Button */
.wdt-button {
	display: inline-block;
	text-align: center;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
	background-color: #0B3B8C;
	padding: 12px 24px;
	border-radius: 8px;
	margin-top: auto;
	transition: background-color 0.2s ease, color 0.2s ease;
	cursor: pointer;
}

.wdt-button:hover {
	background-color: #092C6B;
	color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
	.wdt-pricing-wrapper {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.wdt-pricing-wrapper {
		grid-template-columns: 1fr;
	}
	.wdt-pricing-card.wdt-highlighted {
		transform: none;
	}
}
