/* ============================================================
   MK Pricing Widget — Elementor Widget Stylesheet
   Theme: Elevyn Designs — DARK VERSION
   Colors: #d21f7d (Pink) → #3b1ab3 (Deep Purple) on black bg
   Font: Inter (Google Fonts)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ---------------------------------------------------------- */
/* Root font override — force Inter EXCEPT for FontAwesome    */
/* ---------------------------------------------------------- */
.mk-pricing-wrap,
.mk-pricing-wrap *:not(i):not([class*="fa"]) {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
	box-sizing: border-box;
}

/* Ensure FontAwesome 5 icons display correctly with distinct glyphs */
.mk-pricing-wrap i,
.mk-pricing-wrap .fas,
.mk-pricing-wrap .far,
.mk-pricing-wrap .fab,
.mk-pricing-wrap [class*="fa-"] {
	font-family: "Font Awesome 5 Free", "FontAwesome" !important;
	font-weight: 900 !important;
	font-style: normal !important;
}

/* ---------------------------------------------------------- */
/* CSS Custom Properties (dark theme — pure black)             */
/* ---------------------------------------------------------- */
.mk-pricing-wrap {
	--mk-primary:          #d21f7d;
	--mk-secondary:        #3b1ab3;
	--mk-gradient:         linear-gradient(135deg, #d21f7d 0%, #3b1ab3 100%);
	--mk-gradient-90:      linear-gradient(90deg, #d21f7d 0%, #3b1ab3 100%);
	--mk-page-bg:          #000000;
	--mk-card-bg:          #0f0f0f;
	--mk-card-hover-bg:    #161616;
	--mk-border:           rgba(210, 31, 125, 0.22);
	--mk-border-glow:      rgba(210, 31, 125, 0.55);
	--mk-text-dark:        #ffffff;
	--mk-text-body:        rgba(255, 255, 255, 0.78);
	--mk-text-muted:       rgba(255, 255, 255, 0.42);
	--mk-divider:          rgba(210, 31, 125, 0.25);
	--mk-feature-sep:      rgba(255, 255, 255, 0.07);
	--mk-shadow-card:      0 4px 24px rgba(0,0,0,0.6), 0 1px 6px rgba(0,0,0,0.4);
	--mk-shadow-hover:     0 20px 60px rgba(210,31,125,0.3), 0 6px 24px rgba(0,0,0,0.6);
	--mk-shadow-featured:  0 0 0 1px rgba(210,31,125,0.5), 0 8px 40px rgba(210,31,125,0.35);
	--mk-radius-xl:        50px;
	--mk-radius-lg:        20px;
	--mk-radius-md:        14px;
	--mk-radius-sm:        8px;
	--mk-transition:       all 0.32s cubic-bezier(0.4, 0, 0.2, 1);

	/* Card fixed height for desktop inner-scroll */
	--mk-card-height:      530px;
	/* Approximate height of header + divider + button */
	--mk-card-chrome:      210px;

	background:   var(--mk-page-bg);
	color:        var(--mk-text-dark) !important;
	padding:      80px 20px;
	position:     relative;
	overflow:     visible;
}

/* Subtle dark glow blobs on black */
.mk-pricing-wrap::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(ellipse 55% 40% at 5%  15%, rgba(210,31,125,0.12) 0%, transparent 70%),
		radial-gradient(ellipse 55% 40% at 95% 85%, rgba(59,26,179,0.12)  0%, transparent 70%),
		radial-gradient(ellipse 40% 30% at 50% 50%, rgba(210,31,125,0.05) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.mk-pricing-wrap > * {
	position: relative;
	z-index: 1;
}

/* ---------------------------------------------------------- */
/* Force all text to be WHITE (override any theme dark text)  */
/* ---------------------------------------------------------- */
.mk-pricing-wrap h2,
.mk-pricing-wrap h3,
.mk-pricing-wrap h4,
.mk-pricing-wrap h5,
.mk-pricing-wrap h6,
.mk-pricing-wrap p,
.mk-pricing-wrap li,
.mk-pricing-wrap span:not(.mk-price-value):not(.mk-price-currency) {
	color: #ffffff !important;
}

/* ---------------------------------------------------------- */
/* Section Header                                              */
/* ---------------------------------------------------------- */
.mk-pricing-section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 60px;
}

.mk-pricing-section-subtitle {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	font-size: 12px !important;
	font-weight: 700 !important;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: var(--mk-primary) !important;
	background: rgba(210, 31, 125, 0.12);
	border: 1px solid rgba(210, 31, 125, 0.28);
	padding: 6px 18px;
	border-radius: 50px;
	margin-bottom: 20px;
	animation: mk-fade-up 0.6s ease both;
}

.mk-pricing-section-subtitle i {
	font-size: 9px;
	color: var(--mk-primary) !important;
	animation: mk-spin 3s linear infinite;
}

@keyframes mk-spin {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

.mk-pricing-section-title {
	font-size: clamp(28px, 4vw, 46px) !important;
	font-weight: 800 !important;
	line-height: 1.15;
	letter-spacing: -0.8px;
	margin: 0 0 16px;
	background: var(--mk-gradient-90);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: mk-fade-up 0.6s 0.1s ease both;
}

.mk-pricing-section-desc {
	font-size: 16px !important;
	line-height: 1.75;
	color: rgba(255,255,255,0.75) !important;
	margin: 0;
	animation: mk-fade-up 0.6s 0.2s ease both;
}

@keyframes mk-fade-up {
	from { opacity: 0; transform: translateY(18px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ---------------------------------------------------------- */
/* Service Tabs Nav                                            */
/* ---------------------------------------------------------- */
.mk-pricing-tabs-wrapper {
	margin-bottom: 50px;
}

.mk-pricing-tabs-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	padding: 6px;
	background: rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: var(--mk-radius-xl);
	max-width: 960px;
	margin: 0 auto;
}

.mk-pricing-tab-btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 10px 20px;
	border: 1px solid transparent;
	border-radius: var(--mk-radius-xl);
	background: transparent;
	color: rgba(255,255,255,0.45) !important;
	font-size: 13.5px !important;
	font-weight: 500 !important;
	cursor: pointer;
	transition: var(--mk-transition);
	white-space: nowrap;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
}

.mk-pricing-tab-btn i {
	font-size: 13px;
	color: inherit !important;
	transition: var(--mk-transition);
}

.mk-pricing-tab-btn:hover {
	color: #ffffff !important;
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.1);
}

.mk-pricing-tab-btn.active {
	background: var(--mk-gradient);
	color: #fff !important;
	border-color: transparent;
	box-shadow: 0 6px 22px rgba(210, 31, 125, 0.38);
	transform: translateY(-1px);
}

.mk-pricing-tab-btn.active i {
	color: #fff !important;
	transform: scale(1.1);
}

.mk-pricing-tab-btn:focus-visible {
	outline: 2px solid var(--mk-primary);
	outline-offset: 2px;
}

/* ---------------------------------------------------------- */
/* Pricing Panels                                              */
/* ---------------------------------------------------------- */
.mk-pricing-panels {
	max-width: 1400px;
	margin: 0 auto;
}

.mk-pricing-panel {
	display: none;
}

.mk-pricing-panel.active {
	display: block;
	animation: mk-panel-in 0.38s ease both;
}

@keyframes mk-panel-in {
	from { opacity: 0; transform: translateY(12px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ---------------------------------------------------------- */
/* Cards Grid                                                  */
/* ---------------------------------------------------------- */
.mk-pricing-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
	align-items: start;
}

/* ---------------------------------------------------------- */
/* Pricing Card                                                */
/* ---------------------------------------------------------- */
.mk-pricing-card {
	background: var(--mk-card-bg);
	border: 1px solid var(--mk-border);
	border-radius: var(--mk-radius-lg);
	padding: 28px;
	display: flex;
	flex-direction: column;
	position: relative;
	/* FIXED height so inner list scrolls — not the page */
	height: var(--mk-card-height);
	transition: var(--mk-transition);
	box-shadow: var(--mk-shadow-card);
	/* Do NOT set overflow:hidden here — it breaks inner scroll on some browsers */
}

/* Top gradient accent line */
.mk-pricing-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--mk-gradient-90);
	opacity: 0;
	transition: var(--mk-transition);
	border-radius: var(--mk-radius-lg) var(--mk-radius-lg) 0 0;
	z-index: 2;
}

.mk-pricing-card:hover {
	background: var(--mk-card-hover-bg);
	border-color: var(--mk-border-glow);
	box-shadow: var(--mk-shadow-hover);
	transform: translateY(-6px);
}

.mk-pricing-card:hover::before {
	opacity: 1;
}

/* Featured Card */
.mk-pricing-card--featured {
	border-color: var(--mk-primary);
	background: linear-gradient(160deg, rgba(210,31,125,0.13) 0%, rgba(59,26,179,0.13) 100%);
	box-shadow: var(--mk-shadow-featured);
}

.mk-pricing-card--featured::before {
	opacity: 1;
}

.mk-pricing-card--featured:hover {
	box-shadow: 0 20px 60px rgba(210,31,125,0.28), 0 4px 14px rgba(0,0,0,0.07);
	transform: translateY(-8px);
}

/* Badge */
.mk-pricing-card-badge {
	position: absolute;
	top: 18px;
	right: 18px;
	background: var(--mk-gradient);
	color: #fff !important;
	font-size: 10px !important;
	font-weight: 700 !important;
	letter-spacing: 0.9px;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 50px;
	box-shadow: 0 3px 10px rgba(210, 31, 125, 0.4);
	z-index: 3;
}

/* ---------------------------------------------------------- */
/* Card Header                                                 */
/* ---------------------------------------------------------- */
.mk-pricing-card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 18px;
	flex-shrink: 0; /* never shrink — fixed height */
}

.mk-pricing-card-name-wrap {
	flex: 1;
	min-width: 0;
}

.mk-pricing-card-name {
	font-size: 17px !important;
	font-weight: 700 !important;
	color: #ffffff !important;
	margin: 0 0 4px !important;
	line-height: 1.3;
}

.mk-pricing-card-desc {
	font-size: 12px !important;
	color: rgba(255,255,255,0.42) !important;
	margin: 0 !important;
	font-weight: 400 !important;
}

/* Price block */
.mk-pricing-card-price-wrap {
	text-align: right;
	flex-shrink: 0;
}

.mk-pricing-card-price-old {
	font-size: 12px !important;
	color: rgba(255,255,255,0.38) !important;
	text-decoration: line-through;
	display: block;
	margin-bottom: 2px;
}

.mk-pricing-card-price-main {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 2px;
	line-height: 1;
}

.mk-price-currency {
	font-size: 17px !important;
	font-weight: 700 !important;
	color: var(--mk-primary) !important;
	margin-top: 4px;
}

.mk-price-value {
	font-size: 34px !important;
	font-weight: 800 !important;
	background: var(--mk-gradient-90);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -1px;
	line-height: 1;
}

.mk-pricing-card-price-note {
	font-size: 11px !important;
	color: rgba(255,255,255,0.38) !important;
	display: block;
	margin-top: 3px;
}

/* Divider */
.mk-pricing-card-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(210,31,125,0.25) 50%, transparent 100%);
	margin: 0 0 16px;
	flex-shrink: 0;
}

/* ---------------------------------------------------------- */
/* INNER SCROLL — DESKTOP FIX                                  */
/*                                                             */
/* Architecture:                                               */
/*  .mk-pricing-card (flex column, fixed height)               */
/*    └─ header (flex-shrink:0)                                */
/*    └─ divider (flex-shrink:0)                               */
/*    └─ .mk-pricing-features-scroll-wrap (flex:1, min-h:0)   */
/*         └─ .mk-pricing-features-list (absolute fill, scroll)*/
/*    └─ cta (flex-shrink:0)                                   */
/* ---------------------------------------------------------- */

.mk-pricing-features-scroll-wrap {
	flex: 1 1 0;        /* grow to fill remaining card space */
	min-height: 0;      /* CRITICAL: allow flex child to shrink below content */
	position: relative; /* for absolute child + fade overlay */
	margin-bottom: 20px;
}

.mk-pricing-features-list {
	/* Absolutely fill the scroll-wrap so scroll is self-contained */
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	list-style: none;
	margin: 0;
	padding: 0 8px 44px 0; /* right: scrollbar gap; bottom: fade area */
	overflow-y: scroll;    /* always show scrollbar rail */
	overflow-x: hidden;
	/* Prevent scroll propagation to page */
	overscroll-behavior-y: contain;
	/* Custom scrollbar */
	scrollbar-width: thin;
	scrollbar-color: rgba(210,31,125,0.5) rgba(210,31,125,0.08);
}

/* Webkit scrollbar */
.mk-pricing-features-list::-webkit-scrollbar {
	width: 4px;
}
.mk-pricing-features-list::-webkit-scrollbar-track {
	background: rgba(210,31,125,0.07);
	border-radius: 4px;
}
.mk-pricing-features-list::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #d21f7d 0%, #3b1ab3 100%);
	border-radius: 4px;
}

/* Bottom fade hint — lives inside .mk-pricing-features-scroll-wrap */
.mk-pricing-features-scroll-wrap::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 44px;
	background: linear-gradient(to top, #0f0f0f 10%, rgba(15,15,15,0) 100%);
	pointer-events: none;
	z-index: 2;
	transition: opacity 0.25s ease;
}

.mk-pricing-card--featured .mk-pricing-features-scroll-wrap::after {
	background: linear-gradient(to top, #0d0010 10%, rgba(13,0,16,0) 100%);
}

/* Hide fade when scrolled to bottom */
.mk-pricing-features-scroll-wrap.mk-scrolled-bottom::after {
	opacity: 0;
}

/* ---------------------------------------------------------- */
/* Feature Item                                                */
/* ---------------------------------------------------------- */
.mk-pricing-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 7px 0;
	border-bottom: 1px solid var(--mk-feature-sep);
	transition: padding-left 0.2s ease;
}

.mk-pricing-feature-item:last-child {
	border-bottom: none;
}

.mk-pricing-feature-item:hover {
	padding-left: 4px;
}

.mk-pricing-feature-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	min-width: 20px;
	border-radius: 50%;
	background: rgba(210, 31, 125, 0.1);
	border: 1px solid rgba(210, 31, 125, 0.25);
	margin-top: 1px;
	flex-shrink: 0;
}

.mk-pricing-feature-icon i,
.mk-pricing-feature-icon svg {
	width: 10px;
	height: 10px;
	fill: var(--mk-primary) !important;
	color: var(--mk-primary) !important;
	display: block;
}

.mk-tab-svg-icon,
.mk-svg-icon,
.mk-btn-svg-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.mk-tab-svg-icon svg,
.mk-svg-icon svg,
.mk-btn-svg-arrow svg {
	fill: currentColor;
	display: inline-block;
	vertical-align: middle;
}

.mk-pricing-feature-text {
	font-size: 13.5px !important;
	color: rgba(255,255,255,0.78) !important;
	line-height: 1.5;
	flex: 1;
}

/* ---------------------------------------------------------- */
/* CTA Button                                                  */
/* ---------------------------------------------------------- */
.mk-pricing-card-cta {
	flex-shrink: 0;
}

.mk-pricing-btn {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 13px 22px;
	border-radius: var(--mk-radius-md);
	font-size: 14px !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	letter-spacing: 0.2px;
	transition: var(--mk-transition);
	cursor: pointer;
	border: none;
}

.mk-pricing-btn i {
	font-size: 12px !important;
	transition: transform 0.28s ease;
}

.mk-pricing-btn:hover i {
	transform: translateX(4px);
}

/* Primary (featured) */
.mk-pricing-btn--primary {
	background: var(--mk-gradient);
	color: #fff !important;
	box-shadow: 0 6px 22px rgba(210, 31, 125, 0.38);
}

.mk-pricing-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 32px rgba(210, 31, 125, 0.52);
	color: #fff !important;
}

/* Outline button */
.mk-pricing-btn--outline {
	background: transparent;
	color: #ffffff !important;
	border: 1.5px solid rgba(210, 31, 125, 0.5);
}

.mk-pricing-btn--outline:hover {
	background: var(--mk-gradient);
	border-color: transparent;
	color: #fff !important;
	box-shadow: 0 6px 22px rgba(210, 31, 125, 0.35);
	transform: translateY(-2px);
}

/* ---------------------------------------------------------- */
/* Responsive — Tablet (768–1024px)                           */
/* ---------------------------------------------------------- */
@media (max-width: 1024px) {
	.mk-pricing-wrap {
		padding: 60px 16px;
	}

	.mk-pricing-cards-grid {
		grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
		gap: 18px;
	}

	.mk-pricing-section-title {
		font-size: clamp(24px, 5vw, 36px) !important;
	}

	.mk-pricing-card {
		height: 510px;
	}
}

/* ---------------------------------------------------------- */
/* Responsive — Mobile (≤767px)                               */
/* Card height: auto so content expands naturally             */
/* List: max-height scroll (like phone)                        */
/* ---------------------------------------------------------- */
@media (max-width: 767px) {
	.mk-pricing-wrap {
		padding: 50px 14px;
	}

	.mk-pricing-section-header {
		margin-bottom: 40px;
	}

	.mk-pricing-tabs-wrapper {
		position: sticky;
		top: 10px;
		z-index: 99;
		background: rgba(0, 0, 0, 0.75);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		padding: 6px 0;
		margin-bottom: 24px;
		border-radius: var(--mk-radius-lg);
	}

	.mk-pricing-tabs-nav {
		border-radius: var(--mk-radius-lg);
		gap: 6px;
	}

	.mk-pricing-tab-btn {
		padding: 8px 12px;
		font-size: 12.5px !important;
	}

	/* ── MOBILE LAYOUT 1 — Icon only tabs (active shows label) ── */
	.mk-layout-1 .mk-pricing-tab-btn span {
		display: none !important;
	}

	.mk-layout-1 .mk-pricing-tab-btn i {
		display: inline-block !important;
		font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands", sans-serif !important;
		font-size: 15px !important;
	}

	.mk-layout-1 .mk-pricing-tab-btn.active span {
		display: inline !important;
	}

	/* ── MOBILE LAYOUT 2 — Horizontal sticky slider with Icon AND Service Name ── */
	.mk-layout-2 .mk-pricing-tabs-wrapper {
		position: sticky !important;
		top: 10px !important;
		z-index: 999 !important;
		background: rgba(0, 0, 0, 0.85) !important;
		backdrop-filter: blur(14px) !important;
		-webkit-backdrop-filter: blur(14px) !important;
		padding: 8px 0 !important;
		margin-bottom: 24px !important;
		border-radius: 50px !important;
		border: 1px solid rgba(255, 255, 255, 0.1) !important;
	}

	.mk-layout-2 .mk-pricing-tabs-nav {
		display: flex !important;
		flex-wrap: nowrap !important;
		justify-content: flex-start !important;
		gap: 8px !important;
		padding: 4px 10px !important;
		background: transparent !important;
		border: none !important;
		max-width: 100% !important;
		margin: 0 !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none !important;
	}

	.mk-layout-2 .mk-pricing-tabs-nav::-webkit-scrollbar {
		display: none !important;
	}

	.mk-layout-2 .mk-pricing-tab-btn {
		flex: 0 0 auto !important;
		white-space: nowrap !important;
		padding: 8px 16px !important;
		border-radius: 50px !important;
		font-size: 13px !important;
		font-weight: 500 !important;
		background: rgba(255, 255, 255, 0.07) !important;
		border: 1px solid rgba(255, 255, 255, 0.12) !important;
		color: rgba(255, 255, 255, 0.65) !important;
		display: inline-flex !important;
		align-items: center !important;
		gap: 6px !important;
	}

	/* Show BOTH icon and label on mobile in Layout 2 */
	.mk-layout-2 .mk-pricing-tab-btn i {
		display: inline-block !important;
		font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands", sans-serif !important;
		font-size: 13px !important;
		color: inherit !important;
	}

	.mk-layout-2 .mk-pricing-tab-btn span {
		display: inline !important;
		color: inherit !important;
	}

	.mk-layout-2 .mk-pricing-tab-btn.active {
		background: linear-gradient(135deg, #d21f7d 0%, #3b1ab3 100%) !important;
		color: #ffffff !important;
		border-color: transparent !important;
		box-shadow: 0 4px 18px rgba(210, 31, 125, 0.5) !important;
	}

	.mk-pricing-cards-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	/* Mobile: remove absolute scroll — revert to max-height */
	.mk-pricing-card {
		height: auto !important;
		min-height: unset;
		padding: 22px 18px;
	}

	.mk-pricing-features-scroll-wrap {
		flex: none;
		position: static;
		height: auto;
		margin-bottom: 20px;
	}

	.mk-pricing-features-list {
		position: static;
		height: auto;
		max-height: 240px;
		overflow-y: auto;
		padding: 0 6px 0 0;
	}

	/* Remove bottom fade on mobile */
	.mk-pricing-features-scroll-wrap::after {
		display: none;
	}

	.mk-pricing-card-header {
		flex-direction: column;
		gap: 10px;
	}

	.mk-pricing-card-price-wrap {
		text-align: left;
	}

	.mk-pricing-card-price-main {
		justify-content: flex-start;
	}

	.mk-pricing-card-badge {
		position: static;
		display: inline-block;
		margin-bottom: 10px;
	}

	.mk-price-value {
		font-size: 30px !important;
	}
}

/* ---------------------------------------------------------- */
/* Extra small (≤480px)                                        */
/* ---------------------------------------------------------- */
@media (max-width: 480px) {
	.mk-pricing-section-title {
		font-size: 24px !important;
	}

	.mk-pricing-section-desc {
		font-size: 14px !important;
	}

	.mk-pricing-card-name {
		font-size: 16px !important;
	}

	.mk-price-value {
		font-size: 28px !important;
	}
}

/* ---------------------------------------------------------- */
/* Elementor Editor Preview                                    */
/* ---------------------------------------------------------- */
.elementor-editor-active .mk-pricing-panel {
	display: block !important;
}

.elementor-editor-active .mk-pricing-panel:not(:first-child) {
	display: none !important;
}

/* ---------------------------------------------------------- */
/* Card entrance animations                                    */
/* ---------------------------------------------------------- */
@keyframes mk-card-in {
	from { opacity: 0; transform: translateY(20px) scale(0.975); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

.mk-pricing-panel.active .mk-pricing-card {
	animation: mk-card-in 0.38s ease both;
}

.mk-pricing-panel.active .mk-pricing-card:nth-child(1) { animation-delay: 0.04s; }
.mk-pricing-panel.active .mk-pricing-card:nth-child(2) { animation-delay: 0.10s; }
.mk-pricing-panel.active .mk-pricing-card:nth-child(3) { animation-delay: 0.16s; }
.mk-pricing-panel.active .mk-pricing-card:nth-child(4) { animation-delay: 0.22s; }
.mk-pricing-panel.active .mk-pricing-card:nth-child(5) { animation-delay: 0.28s; }
.mk-pricing-panel.active .mk-pricing-card:nth-child(6) { animation-delay: 0.34s; }
.mk-pricing-panel.active .mk-pricing-card:nth-child(7) { animation-delay: 0.40s; }
.mk-pricing-panel.active .mk-pricing-card:nth-child(8) { animation-delay: 0.46s; }

/* ================================================================
   LAYOUT 2 — Horizontal Scrollable Tab Slider
   Applied on ALL screen sizes (slider is always a horizontal row)
   Mobile gets full-width scrollable row with all labels visible
   ================================================================ */

/* ── Layout 2: horizontal slider for ALL screens ── */
.mk-layout-2 .mk-pricing-tabs-wrapper {
	position: sticky;
	top: 15px;
	z-index: 99;
	margin-bottom: 48px;
	padding: 4px 0;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.mk-layout-2 .mk-pricing-tabs-nav {
	display: flex !important;
	flex-wrap: nowrap !important;          /* single row — NEVER wrap */
	justify-content: flex-start !important;
	gap: 10px !important;
	padding: 8px 20px !important;
	border-radius: 0 !important;
	background: transparent !important;
	border: none !important;
	max-width: 100% !important;
	margin: 0 !important;
	/* Horizontal scroll */
	overflow-x: auto !important;
	overflow-y: hidden !important;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	scroll-behavior: smooth;
	/* Hide scrollbar track on all browsers */
	scrollbar-width: none !important;
	-ms-overflow-style: none !important;
}

.mk-layout-2 .mk-pricing-tabs-nav::-webkit-scrollbar {
	display: none !important;
}

/* Each pill button */
.mk-layout-2 .mk-pricing-tab-btn {
	flex: 0 0 auto !important;            /* never grow or shrink */
	white-space: nowrap !important;
	padding: 10px 20px !important;
	border-radius: 50px !important;
	font-size: 13.5px !important;
	font-weight: 500 !important;
	letter-spacing: 0 !important;
	background: rgba(255, 255, 255, 0.06) !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	color: rgba(255, 255, 255, 0.52) !important;
	transition: all 0.26s ease !important;
	position: relative;
	transform: none !important;
}

/* Label always visible */
.mk-layout-2 .mk-pricing-tab-btn span {
	display: inline !important;
	vertical-align: middle;
}

/* Icon visible in slider as well */
.mk-layout-2 .mk-pricing-tab-btn i {
	display: inline-block !important;
	font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands", sans-serif !important;
	font-size: 13px !important;
	vertical-align: middle;
}

/* Hover */
.mk-layout-2 .mk-pricing-tab-btn:hover {
	color: #ffffff !important;
	background: rgba(255, 255, 255, 0.1) !important;
	border-color: rgba(210, 31, 125, 0.4) !important;
}

/* Active pill */
.mk-layout-2 .mk-pricing-tab-btn.active {
	background: linear-gradient(135deg, #d21f7d 0%, #3b1ab3 100%) !important;
	color: #ffffff !important;
	border-color: transparent !important;
	box-shadow: 0 4px 20px rgba(210, 31, 125, 0.55) !important;
	transform: none !important;
}

/* Active indicator dot below */
.mk-layout-2 .mk-pricing-tab-btn.active::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 20px;
	height: 3px;
	background: linear-gradient(90deg, #d21f7d 0%, #3b1ab3 100%);
	border-radius: 2px;
	z-index: 2;
}

/* Edge fade — hint more pills exist off-screen */
.mk-layout-2 .mk-pricing-tabs-wrapper::before,
.mk-layout-2 .mk-pricing-tabs-wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 32px;
	z-index: 10;
	pointer-events: none;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.mk-layout-2 .mk-pricing-tabs-wrapper::before {
	left: 0;
	background: linear-gradient(to right, #000000 30%, transparent 100%);
}

.mk-layout-2 .mk-pricing-tabs-wrapper::after {
	right: 0;
	background: linear-gradient(to left, #000000 30%, transparent 100%);
}

/* ── Desktop overrides for Layout 2 ── */
/* On desktop the wrap still looks nice but doesn't need to scroll */
@media (min-width: 768px) {
	.mk-layout-2 .mk-pricing-tabs-nav {
		justify-content: center !important;
		padding: 6px 20px !important;
		border-radius: 50px !important;
		background: rgba(0, 0, 0, 0.04) !important;
		border: 1px solid rgba(255,255,255,0.08) !important;
		max-width: 960px !important;
		margin: 0 auto !important;
		overflow-x: visible !important;
	}

	.mk-layout-2 .mk-pricing-tab-btn {
		padding: 10px 20px !important;
	}

	/* On desktop show icons again in Layout 2 */
	.mk-layout-2 .mk-pricing-tab-btn i {
		display: inline !important;
		font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands", sans-serif !important;
		font-size: 13px;
	}

	/* Hide edge fades on desktop */
	.mk-layout-2 .mk-pricing-tabs-wrapper::before,
	.mk-layout-2 .mk-pricing-tabs-wrapper::after {
		display: none;
	}
}
