.esim-plans-dc8c9684 {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #111;
	--ep-primary: #e60000;
	--ep-border: #f0f0f0;
	--ep-bg: #fdfdfd;
	background: #fdfdfd; /* match the slight gray background of the app */
	width: 100%;
	margin: 0;
	padding: 20px 15px;
	box-sizing: border-box;
}

/* Hide on desktop and tablet */
@media screen and (min-width: 768px) {
	.esim-plans-dc8c9684 {
		display: none !important;
	}
}

/* Search Bar */
.ep-search-container {
	display: flex;
	align-items: center;
	background: #fff;
	border: 1px solid var(--ep-border);
	border-radius: 30px;
	padding: 5px 5px 5px 20px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.03);
	margin-bottom: 25px;
	width: 100%;
	box-sizing: border-box;
}
.ep-search-icon {
	color: #999;
	margin-right: 15px;
}
.ep-search-input {
	border: none;
	background: transparent;
	flex: 1;
	font-size: 16px;
	color: #333;
	outline: none;
	min-width: 0; /* Prevents overflow */
}
.ep-search-btn {
	background: var(--ep-primary);
	color: #fff;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex-shrink: 0;
}

/* Tabs */
.ep-tabs-wrapper {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--ep-border);
	width: 100%;
	overflow-x: auto; /* Allows scrolling if needed on very small screens */
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none; /* Firefox */
}
.ep-tabs-wrapper::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}
.ep-tab-item {
	text-align: center;
	padding: 10px 5px;
	cursor: pointer;
	color: #666;
	border-bottom: 3px solid transparent;
	transition: all 0.3s ease;
	flex: 1;
	min-width: 70px; /* Ensure they don't squish too much */
}
.ep-tab-active {
	color: var(--ep-primary);
	border-bottom-color: var(--ep-primary);
	font-weight: 600;
}
.ep-tab-icon {
	font-size: 22px;
	margin-bottom: 8px;
}
.ep-tab-icon svg, .ep-tab-icon i {
    width: 24px;
    height: 24px;
}
.ep-tab-active .ep-tab-icon {
    color: var(--ep-primary);
}
.ep-tab-active .ep-tab-icon svg {
    fill: var(--ep-primary);
}
.ep-tab-title {
	font-size: 13px;
	white-space: nowrap;
}

/* List Header */
.ep-list-header {
	margin-bottom: 20px;
}
.ep-list-title {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 5px;
	color: #000;
}
.ep-list-subtitle {
	font-size: 14px;
	color: #666;
	margin: 0;
	line-height: 1.4;
}

/* Countries List */
.ep-countries-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 30px;
	width: 100%;
}
.ep-country-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	background: #fff;
	border: 1px solid var(--ep-border);
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.02);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	width: 100%;
	box-sizing: border-box;
}
.ep-country-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.ep-country-left {
	display: flex;
	align-items: center;
	overflow: hidden; /* Prevent text overflow */
	flex: 1;
}
.ep-country-flag {
	width: 40px;
	height: 30px;
	background-color: #f0f0f0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 4px;
	margin-right: 15px;
	flex-shrink: 0;
	box-shadow: 0 0 3px rgba(0,0,0,0.1);
}
.ep-country-info {
    overflow: hidden;
}
.ep-country-name {
	font-size: 16px;
	font-weight: 600;
	color: #111;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ep-country-plans {
	font-size: 13px;
	color: #888;
	margin-top: 3px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ep-country-right {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	margin-left: 10px;
}
.ep-country-price {
	font-size: 15px;
	font-weight: 600;
	color: var(--ep-primary);
	margin-right: 10px;
}
.ep-country-arrow {
	color: var(--ep-primary);
	font-size: 18px;
}

/* Features Row */
.ep-features-row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 15px 5px;
	padding-top: 20px;
	border-top: 1px solid var(--ep-border);
	width: 100%;
}
.ep-feature-item {
	display: flex;
	align-items: flex-start;
	width: 48%; /* Two per row on mobile */
}
.ep-feature-icon {
	font-size: 26px;
	color: var(--ep-primary);
	margin-right: 12px;
	margin-top: 2px;
	flex-shrink: 0;
}
.ep-feature-icon svg {
    fill: var(--ep-primary);
    width: 28px;
    height: 28px;
}
.ep-feature-text {
    display: flex;
    flex-direction: column;
}
.ep-feature-title {
	font-size: 14px;
	font-weight: 700;
	color: #111;
	line-height: 1.2;
}
.ep-feature-subtitle {
	font-size: 12px;
	color: #666;
	margin-top: 4px;
	line-height: 1.2;
}
