/* Pricing Container */
.ekit-pricing-container {
	gap: 20px;
	width: 100%;
	display: flex;
	flex-direction: column;
}

/* Price Header Section */
.ekit-price-display {
	gap: 6px;
	display: flex;
	line-height: 1;
	margin-bottom: 6px;
	font-family: 'Inter';
	align-items: flex-end;
}
.ekit-current-price {
	font-size: 36px;
	font-weight: 700;
	color: var(--e-global-color-accent);
}
.ekit-original-price {
	font-size: 20px;
	font-weight: 400;
	text-decoration: line-through;
	color: var(--e-global-color-text);
}
.ekit-save-badge {
	line-height: 1;
	font-size: 12px;
	font-weight: 600;
    padding: 4px 6px;
    border-radius: 6px;
	text-align: center;
	font-family: 'Inter';
	display: inline-block;
	text-transform: uppercase;
    background-color: #A6FFFF;
	color: var(--e-global-color-accent);
}

/* Bundle Price Options - Custom Dropdown */
.wp-bundle-price-options {
	margin: 4px 0 0;
	position: relative;
}
.wp-price-picker-toggle {
	width: 100%;
	line-height: 1;
	cursor: pointer;
	font-size: 14px;
	font-weight: 400;
	text-align: left;
	position: relative;
	border-radius: 8px;
	font-family: 'Inter';
	background-color: #FFFFFF;
	border: 1px solid #CDD0DF;
	transition: 0.3s ease-in-out;
	padding: 11px 30px 11px 14px;
	color: var(--e-global-color-accent);
	box-shadow: 0px 1px 2px -1px rgba(9, 11, 15, 0.1);
}
.wp-price-picker-toggle:hover {
	border-color: #7C9DFE;
}
.wp-price-picker-toggle:focus {
	outline: none;
	border-color: #7C9DFE;
	box-shadow: 0px 1px 3px -1px rgba(9, 11, 15, 0.2), 0px 0px 0px 3px rgba(43, 88, 222, 0.14);
}
.wp-price-picker-toggle::after {
    content: '';
    top: 15px;
    right: 14px;
    width: 11px;
    height: 6px;
    position: absolute;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease-in-out;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10'%3E%3Cpath d='M0.401677 0.86884C0.69457 0.575947 1.16944 0.575947 1.46234 0.86884L7.93201 7.33851L14.4017 0.86884C14.6946 0.575947 15.1694 0.575947 15.4623 0.86884C15.7552 1.16173 15.7552 1.63661 15.4623 1.9295L8.46234 8.9295C8.16944 9.22239 7.69457 9.22239 7.40168 8.9295L0.401677 1.9295C0.108784 1.63661 0.108784 1.16173 0.401677 0.86884Z' fill='%23000'/%3E%3C/svg%3E");
}
.wp-price-picker-toggle.active::after {
	transform: scaleY(-1);
}

/* Price Plan List (Dropdown Content) */
.ekit-pricing-plan-list {
	left: 0;
	right: 0;
	top: 100%;
	padding: 0;
	z-index: 10;
	padding: 4px;
	overflow: hidden;
	margin: 4px 0 0 0;
	position: absolute;
	border-radius: 8px;
	border: 1px solid #E3E4EB;
	background-color: #FFFFFF;
	box-shadow: 0px 10px 14px -6px rgba(19, 21, 29, 0.16);
}

/* Section Labels */
.price-plan-yearly-label,
.price-plan-lifetime-label {
	line-height: 1;
	font-size: 12px;
	font-weight: 600;
	padding: 8px 16px;
	margin: 0 -4px 4px;
	font-family: 'Inter';
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--e-global-color-accent);
	border-bottom: 1px dashed #E3E4EB;
}
.price-plan-lifetime-label {
	margin-top: 10px;
}

/* Price Plan Options */
.ekit-pricing-plan-option {
	line-height: 1;
	cursor: pointer;
	font-size: 14px;
	font-weight: 400;
	border-radius: 6px;
	padding: 10px 12px;
	font-family: 'Inter';
	transition: .3s ease-in-out;
	color: var(--e-global-color-accent);
}
.ekit-pricing-plan-option:not(:last-child) {
	margin-bottom: 4px;
}
.ekit-pricing-plan-option:hover {
	background: #F5F6F9;
}
.ekit-pricing-plan-option.selected {
	color: #FFFFFF;
	background: #2B58DE;
}
.ekit-pricing-plan-option-label {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.price-plan-price {
	font-weight: 500;
}
.price-plan-price s {
	opacity: 0.5;
	font-weight: 400;
}

/* Purchase Button */
.ekit-purchase-button {
	gap: 10px;
	width: 100%;
	display: flex;
	cursor: pointer;
	line-height: 1;
	font-size: 16px;
	font-weight: 500;
	color: #2B58DE;
	border-radius: 8px;
	padding: 15px 20px;
	margin-bottom: 6px;
	flex-direction: row;
	align-items: center;
	font-family: 'Inter';
	justify-content: center;
	background-color: #FFFFFF;
	border: 2px solid #2B58DE;
	transition: 0.3s ease-in-out;
}
.ekit-purchase-button:hover {
	color: #FFFFFF;
	background-color: #2B58DE;
}
.ekit-purchase-button .arrow-icon {
	flex: 0 0 auto;
}
.ekit-purchase-button .arrow-icon svg {
	width: 10px;
	height: auto;
	display: block;
	fill: currentColor;
}

/* Features List */
.ekit-feature-item {
	gap: 10px;
	display: flex;
	align-items: flex-start;
	font-family: "Inter", Sans-serif;
}
.ekit-feature-item:not(:last-child) {
	margin-bottom: 10px;
}
.ekit-feature-item .feature-text {
	font-size: 16px;
    font-weight: 400;
    line-height: 20px;
	color: var(--e-global-color-accent);
}
.ekit-feature-item .feature-check {
	flex: 0 0 auto;
	margin-top: 3px;
}
.ekit-feature-item .feature-check svg {
	width: 14px;
	height: auto;
	display: block;
}

/* Loading State */
.ekit-pricing-container.loading {
	opacity: 0.6;
	pointer-events: none;
}
.ekit-pricing-container.loading * {
	cursor: wait;
}

/* Tooltip Styles */
.feature-info {
	opacity: 0.35;
	flex: 0 0 auto;
	cursor: pointer;
	fill: currentColor;
	margin: 4px 0 0 -4px;
	transition: 0.3s ease-in-out;
}
.feature-info:not([data-tooltip]),
.feature-info[data-tooltip=""] {
    display: none;
}
.feature-info > svg {
	width: 14px;
	height: auto;
	display: block;
}
.feature-info:hover {
	opacity: 1;
}
.ekit-tooltip {
	left: 0;
	opacity: 0;
	z-index: 999;
	font-size: 12px;
	max-width: 215px;
	font-weight: 500;
	line-height: 16px;
	position: absolute;
	border-radius: 6px;
	text-align: center;
	white-space: normal;
	font-family: 'Inter';
	word-wrap: break-word;
	padding: 10px 12px 12px;
	background-color: #13151D;
	transform: translateY(-5px);
	color: rgba(255, 255, 255, 0.8);
	transition: opacity 0.2s ease, transform 0.2s ease;
	box-shadow: 0px 10px 20px -4px rgba(19, 21, 29, 0.24);
}
.ekit-tooltip::before {
	left: 50%;
	top: 100%;
	content: '';
	width: 16px;
	height: 16px;
	position: absolute;
	transform: translateX(-50%);
	background-color: #13151D;
	clip-path: polygon(100% 0, 0 0, 50% 50%);
}
.ekit-tooltip.visible {
	opacity: 1;
}