/* ── Google Font Import ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* ── Reset ── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	background: #f0f0f0;
}

/* ── Paste your frontend.css here OR link it ── */

:root {
	--nm-orange: #FF6B00;
	--nm-orange-dark: #e05e00;
	--nm-black: #1a1a1a;
	--nm-border: #e8e8e8;
	--nm-bg-light: #f5f5f5;
	--nm-text-muted: #666;
	--nm-white: #fff;
	--nm-radius: 12px;
	--nm-transition: 0.18s ease;
}

/* Block Wrapper */
.nymobil-sub-block {
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px 0px;
	font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	box-sizing: border-box;
	background: #FFFFFF;
}

.nymobil-sub-block *,
.nymobil-sub-block *::before,
.nymobil-sub-block *::after {
	box-sizing: inherit;
}

/* Section Header */
.nymobil-sub-block__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 16px;
}

.nymobil-sub-block__title {
	font-size: 30px;
	font-weight: 800;
	color: #0A0A0A;
	margin: 0;
	letter-spacing: -0.3px;
}

.nymobil-sub-block__see-more {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 7px 18px;
	border: 1.5px solid #00A4E5;
	border-radius: 30px;
	font-size: 18px;
	font-weight: 500;
	color: #00A4E5;
	text-decoration: none;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	white-space: nowrap;
}

.nymobil-sub-block__see-more svg {
	height: 16px;
	width: 16px;
	fill: #00A4E5 !important;
}

.nymobil-sub-block__see-more:hover {
	background: transparent;
	color: #00A4E5;
}

.nymobil-sub-block__see-more:hover svg {
	fill: #00A4E5;
}

/* Grid */
.nymobil-sub-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

@media (max-width: 1100px) {
	.nymobil-sub-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.nymobil-sub-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.nymobil-sub-grid {
		grid-template-columns: 1fr;
	}
}

/* Card */
.nymobil-card {
	background: #FFFFFF;
	border: 1px solid #E8E8E8;
	border-radius: 12px;
	overflow: hidden;
	transition: box-shadow 0.18s ease, transform 0.18s ease;
	display: flex;
	flex-direction: column;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.nymobil-card:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
	transform: translateY(-2px);
}

.nymobil-card__inner {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 20px;
	text-decoration: none;
	color: inherit;
}

/* Badge */
.nymobil-card__badge {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 6px;
	padding: 6px 10px;
	margin-bottom: 12px;
	font-size: 16px;
	font-weight: 600;
	color: #1A1A1A;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

.nymobil-card__operator {
	font-size: 11px;
	font-weight: 400;
	color: #161616;
	text-transform: none;
}

.nymobil-card__operator-logo {
	display: block;
	height: 24px;
	width: auto;
	max-width: 60px;
	object-fit: contain;
}

/* Image */
.nymobil-card__image {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 160px;
	margin-bottom: 12px;
	background: transparent;
	border-radius: 8px;
	padding: 8px;
}

.nymobil-card__image img,
.nymobil-card__img {
	width: 100%;
	max-width: 140px;
	height: auto;
	object-fit: contain;
	display: block;
}

.nymobil-card__img-placeholder {
	width: 140px;
	height: 140px;
	background: #F5F5F5;
	border-radius: 8px;
}

/* Title */
.nymobil-card__title {
	font-size: 20px;
	font-weight: 600;
	color: #0A0A0A;
	margin: 0 0 8px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Features */
.nymobil-card__features {
	list-style: disc;
	padding-left: 18px;
	margin: 10px 0px 5px 5px;
	font-size: 16px;
	font-weight: 400;
	color: #161616;
	line-height: 1.6;
}

.nymobil-card__features li {
	margin-bottom: 0;
}

/* Pricing rows */
.nymobil-card__pricing {
	font-size: 16px;
	font-weight: 400;
	color: #161616;
	margin-bottom: 8px;
	padding-top: 8px;
}

.nymobil-card__price-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 3px 0;
}

.nymobil-card__price-row strong {
	font-weight: 600;
	color: #1A1A1A;
	font-size: 16px;
}

.nymobil-card__price-row--extra {
	opacity: 0.65;
	font-style: italic;
}

/* Main price */
.nymobil-card__main-price {
	font-size: 20px;
	font-weight: 700;
	display: flex;
	align-items: baseline;
	gap: 5px;
	margin-top: auto;
	padding-top: 10px;
	justify-content: center;
}

.nymobil-card__main-price strong,
.nymobil-card__main-price span.nymobil-from-price,
.nymobil-card__main-price span.amount {
	font-size: 20px;
	font-weight: 800;
	color: #161616;
	letter-spacing: -0.2px;
}

.nymobil-card__main-price span {
	font-size: 12px;
	color: #888;
}

/* Plan pills */
.nymobil-card__plans {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin: 10px 0 6px;
}

.nymobil-card__pill {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	padding: 3px 10px;
	border: 1.5px solid #E8E8E8;
	border-radius: 20px;
	font-size: 11px;
	color: #666;
	background: #fafafa;
	white-space: nowrap;
}

.nymobil-card__pill.is-active {
	background: #1A1A1A;
	color: #fff;
	border-color: #1A1A1A;
}

.nymobil-card__pill em {
	font-style: normal;
	opacity: 0.7;
	font-size: 10px;
}

/* Min cost */
.nymobil-card__min-cost {
	font-size: 14px;
	font-weight: 400;
	color: #747474;
	margin: 5px 0 0;
	line-height: 1.6;
}

/* Button row */
.nymobil-sub-block__btn-row {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.nymobil-sub-block__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 11px 32px;
	background: #1A1A1A;
	color: #fff;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	transition: background 0.18s ease;
}

.nymobil-sub-block__btn:hover {
	background: #333;
}

.nymobil-card.is-campaign {
	border: 1px solid #00A4E5;
	background-color: #F3FAFE;
}

/* ── Pagination ── */
.nymobil-sub-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 32px 20px;
	font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.nymobil-sub-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 8px;
	border: 1.5px solid #E8E8E8;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	color: #1A1A1A;
	text-decoration: none;
	background: #fff;
	transition: all 0.18s ease;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nymobil-sub-pagination .page-numbers:hover {
	background: #f5f5f5;
	border-color: #BBBBBB;
	transform: translateY(-1px);
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.10);
}

/* Active / current page */
.nymobil-sub-pagination .page-numbers.current {
	background: #1A1A1A;
	color: #ffffff;
	border-color: #1A1A1A;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
	cursor: default;
	transform: none;
}

/* Prev / Next arrows */
.nymobil-sub-pagination .prev.page-numbers,
.nymobil-sub-pagination .next.page-numbers {
	font-size: 16px;
	font-weight: 700;
	color: #161616;
	border-color: #E8E8E8;
}

.nymobil-sub-pagination .prev.page-numbers:hover,
.nymobil-sub-pagination .next.page-numbers:hover {
	color: #1A1A1A;
	border-color: #BBBBBB;
}

/* Dots / ellipsis */
.nymobil-sub-pagination .page-numbers.dots {
	border: none;
	background: transparent;
	box-shadow: none;
	color: #AAAAAA;
	cursor: default;
	min-width: 24px;
}

.nymobil-sub-pagination .page-numbers.dots:hover {
	transform: none;
	box-shadow: none;
	background: transparent;
}

.nymobil-archive.ct-container-fluid {
	padding: 20px 0px 40px 0px;
}

.nymobil-sub-block span.nymobil-card__operator,
.nymobil-subscription-options .nymobil-option-provider img,
.nymobil-sub-grid span.nymobil-card__operator {
	display: none;
}

.nymobil-card__main-price span.woocommerce-Price-amount.amount bdi,
.nymobil-card__main-price span.woocommerce-Price-amount.amount bdi span.woocommerce-Price-currencySymbol {
	font-size: 20px !important;
	font-weight: 600 !important;
	color: #000 !important;
}