/**
 * Norflo Child Theme - Destinations Shortcode Styles (Screenshot Matched Design)
 *
 * @package Norflo_Child
 */

:root {
	--norflo-primary-color: #024DF4;
	--norflo-golden-color: #f59e0b;
}

/* Main Section */
.norflo-destinations-section {
	background-color: #000000;
	border-radius: 14px;
	padding: 60px 0 !important;
	position: relative;
	overflow: hidden;
}

.norflo-destinations-section.ptb-120 {
	padding-top: 60px !important;
	padding-bottom: 60px !important;
}

/* Section Header */
.norflo-destinations-header {
	margin-bottom: 36px !important;
}

.norflo-destinations-header .top-title,
.norflo-dest-top-title {
	color: var(--norflo-golden-color, #f59e0b) !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	letter-spacing: 1.5px !important;
	text-transform: uppercase;
	display: inline-block;
	margin-bottom: 8px !important;
}

.norflo-destinations-header h2,
.norflo-dest-main-title {
	font-size: 32px !important;
	font-weight: 700 !important;
	color: #ffffff !important;
	margin-bottom: 10px !important;
	line-height: 1.25 !important;
}

.norflo-destinations-header p,
.norflo-dest-subtitle {
	color: rgba(255, 255, 255, 0.7) !important;
	font-size: 15px !important;
	max-width: 580px !important;
	margin: 0 auto !important;
	line-height: 1.5 !important;
}

/* Card Link Container */
.norflo-dest-card-link {
	text-decoration: none !important;
	display: block;
	height: 100%;
	color: inherit;
}

/* Card Box - Matched with Screenshot */
.norflo-dest-card.e-sim-provider-destinations-card {
	background-color: #040508 !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	border-radius: 12px !important;
	padding: 22px 24px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 16px !important;
	height: 100% !important;
	min-height: 90px !important;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
	position: relative;
	box-sizing: border-box;
}

.norflo-dest-card.e-sim-provider-destinations-card:hover,
.norflo-dest-card-link:hover .norflo-dest-card {
	border-color: #024DF4 !important;
	background-color: #080b12 !important;
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(2, 77, 244, 0.18) !important;
}

.norflo-dest-card .content {
	display: flex !important;
	align-items: center !important;
	gap: 18px !important;
	flex: 1 !important;
	min-width: 0 !important;
}

/* Flag Icon / Badge */
.norflo-dest-flag {
	width: 50px !important;
	height: 50px !important;
	min-width: 50px !important;
	max-width: 50px !important;
	border-radius: 50% !important;
	overflow: hidden;
	display: flex !important;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.04);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.08);
	flex-shrink: 0;
}

.norflo-dest-flag img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	border-radius: 50% !important;
	display: block !important;
}

/* Card Info */
.norflo-dest-info {
	flex: 1 !important;
	min-width: 0 !important;
}

.norflo-dest-info .norflo-dest-tag {
	color: rgba(255, 255, 255, 0.55) !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	display: block !important;
	margin-bottom: 3px !important;
	letter-spacing: 0.4px !important;
	line-height: 1 !important;
}

.norflo-dest-info .norflo-dest-country-name {
	font-size: 21px !important;
	font-weight: 700 !important;
	color: #ffffff !important;
	margin: 0 0 5px 0 !important;
	line-height: 1.2 !important;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.norflo-dest-info .norflo-dest-pricing {
	color: rgba(255, 255, 255, 0.6) !important;
	font-size: 12.5px !important;
	font-weight: 400 !important;
	margin: 0 !important;
	line-height: 1.2;
	display: flex !important;
	align-items: baseline !important;
	gap: 5px !important;
}

.norflo-dest-info .norflo-dest-pricing .from-text {
	font-size: 11px !important;
	font-weight: 500 !important;
	text-transform: uppercase;
	color: #8c93a0 !important;
	letter-spacing: 0.4px;
}

.norflo-dest-info .norflo-dest-pricing .price-val {
	color: #024DF4 !important;
	font-size: 15.5px !important;
	font-weight: 700 !important;
}

.norflo-dest-info .norflo-dest-pricing .currency-text {
	font-size: 11.5px !important;
	font-weight: 500 !important;
	color: #8c93a0 !important;
}

/* Arrow Icon on Right */
.norflo-dest-arrow {
	color: var(--norflo-golden-color, #f59e0b) !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	transition: transform 0.25s ease !important;
	flex-shrink: 0;
	background: transparent !important;
	border: none !important;
	padding: 0 !important;
	margin-left: 8px;
}

.norflo-dest-card-link:hover .norflo-dest-arrow {
	transform: translateX(4px) !important;
	color: #fbbf24 !important;
}

.norflo-arrow-svg {
	width: 18px !important;
	height: 18px !important;
	stroke: currentColor !important;
}

/* Responsive Grid Breakpoints */
@media (max-width: 991px) {
	.norflo-destinations-section {
		padding: 50px 0 !important;
	}
	.norflo-destinations-header h2,
	.norflo-dest-main-title {
		font-size: 26px !important;
	}
	.norflo-dest-card.e-sim-provider-destinations-card {
		padding: 18px 20px !important;
	}
	.norflo-dest-info .norflo-dest-country-name {
		font-size: 19px !important;
	}
}

@media (max-width: 575px) {
	.norflo-destinations-section {
		padding: 40px 0 !important;
	}
	.norflo-destinations-header h2,
	.norflo-dest-main-title {
		font-size: 22px !important;
	}
	.norflo-dest-card.e-sim-provider-destinations-card {
		padding: 15px 16px !important;
		gap: 12px !important;
	}
	.norflo-dest-flag {
		width: 42px !important;
		height: 42px !important;
		min-width: 42px !important;
		max-width: 42px !important;
	}
	.norflo-dest-info .norflo-dest-country-name {
		font-size: 17px !important;
	}
}
