:root {
	--primary: #0e187b;
	--primary-light: #3a43a1;
	--primary-dark: #0e187b;
	--text: #121212;
	--text-second: #747576;
	--border: #e5e7eb;
	--bg-light: #e5e8ff;
	--radius: 7px;
	--radius-lg: 16px;
}

body { font-family: 'Shabnam', 'Segoe UI', Tahoma, sans-serif; }

#pom-archive-map {}
pom-archive-map a,
pom-archive-map span{
	display: none;
}
.pom-archive-container {
	max-width: 45rem;
	margin: 70px auto;
	direction: rtl;
	min-height: 500px;
}
#pom-list-view {
	background: #fff;
}
.pom-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 20px;
	padding: 10px;
	color: #666;
	direction: rtl;
	background: #fff;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pom-breadcrumb a {
	color: #0e187b;
	text-decoration: none;
	transition: color 0.2s;
}

.pom-breadcrumb a:hover {
	color: #ff9800;
	text-decoration: underline;
}

.pom-breadcrumb span {
	color: #999;
}

.pom-breadcrumb span:last-child {
	color: #333;
	font-weight: 500;
}


.pom-search-section {
	border-radius: var(--radius);
	padding: 15px;
	margin-bottom: 10px;
	background: #fff;
}

.pom-search-wrapper {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
}

.pom-live-search-container {
	position: relative;
	flex: 1;
}

.pom-live-search-input {
	width: 100%;
	padding: 12px 15px;
	padding-right: 30px;
	padding-right: 30px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	font-size: 14px;
	font-family: inherit;
	cursor: pointer;
}

.pom-live-search-input:focus {
	outline: none;
	border-color: var(--primary);
	background: #fff;
}
/* Ø§Ø³ØªØ§ÛŒÙ„â€ŒÙ‡Ø§ÛŒ Ø³Ø§ÛŒØ¯Ø¨Ø§Ø± Ø¬Ø³ØªØ¬Ùˆ */
.pom-search-sidebar-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 70%);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.pom-search-sidebar-overlay.open {
	opacity: 1;
	visibility: visible;
}

.pom-search-sidebar {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	max-width: 410px;
	height: 100vh;
	background: #fff;
	z-index: 999999;
	box-shadow: -5px 0 30px rgba(0,0,0,0.1);
	transition: right 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
	overflow-y: auto;
	direction: rtl;
}

.pom-search-sidebar.open {
	right: 0;
}

.pom-search-header {
	padding: 20px;
	background: linear-gradient(135deg, #0e187b, #3a43a1);
	color: white;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 10;
}

.pom-search-header h3 {
	margin: 0;
	font-size: 18px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.pom-search-close {
	background: rgba(255,255,255,0.2);
	border: none;
	color: white;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

.pom-search-close:hover {
	background: rgba(255,255,255,0.3);
	transform: rotate(90deg);
}

.pom-search-input-wrapper {
	padding: 20px;
}

.pom-search-input-wrapper input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	font-size: 14px;
	transition: all 0.3s;
}

.pom-search-input-wrapper input:focus {
	outline: none;
	border-color: #0e187b;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(14,24,123,0.1);
}

.pom-search-sidebar-section {
	padding: 15px 20px;
	border-bottom: 1px solid #e5e7eb;
}

.pom-search-sidebar-title {
	font-size: 14px;
	color: #0e187b;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 5px;
	border-bottom: 1px solid #e5e8ff;
}

.pom-horizontal-scroll {
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 15px;
	display: flex;
	gap: 15px;
	scroll-snap-type: x mandatory;
	padding-top: 5px;
}

.pom-horizontal-scroll::-webkit-scrollbar {
	height: 5px;
}

.pom-horizontal-scroll::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}

.pom-horizontal-scroll::-webkit-scrollbar-thumb {
	background: #0e187b;
	border-radius: 10px;
}

.pom-search-card {
	display: inline-flex;
	flex-direction: column;
	width: calc(33.33% - 10px);
	min-width: 180px;
	max-width: 220px;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s;
	border: 1px solid #e5e7eb;
	text-align: right;
	white-space: normal;
	scroll-snap-align: start;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.pom-search-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0,0,0,0.12);
	border-color: #0e187b;
}

.pom-search-card-image {
	height: 120px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.pom-search-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pom-search-card-content {
	padding: 7px 10px;
}

.pom-search-card-title {
	font-size: 13px;
	color: #1e293b;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.4;
}
	
.pom-search-card-address {
	font-size: 11px;
	color: #94a3b8;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.pom-search-card-rating {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 8px;
	border-top: 1px solid #f1f5f9;
	margin-top: 2px;
}

.pom-search-card-rating .stars {
	display: flex;
	gap: 3px;
	direction: ltr;
}

.pom-search-card-rating .stars span {
	font-size: 11px;
	color: #ffb01f;
}
.pom-search-card-rating .no-rating {
font-size: 11px;
color: #94a3b8;
font-style: italic;
}
.pom-category-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.pom-category-chip {
	background: #f0f2f5;
	padding: 6px 10px;
	border-radius: 8px;
	font-size: 12px;
	cursor: pointer;
	transition: all 0.3s;
	border: 1px solid transparent;
}

.pom-category-chip:hover {
	background: #e5e8ff;
	border-color: #0e187b;
	transform: translateY(-2px);
}

.pom-history-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px;
	background: #f8f9fa;
	border-radius: 10px;
	margin-bottom: 8px;
	cursor: pointer;
	transition: all 0.3s;
}

.pom-history-item:hover {
	background: #e5e8ff;
}

.pom-empty-results {
	text-align: center;
	padding: 40px 20px;
	color: #999;
}

.pom-empty-results i {
	font-size: 48px;
	margin-bottom: 15px;
	display: block;
}

.pom-categories-slider {
	padding-top: 15px;
}

.pom-categories-scroll {
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 10px;
}

.pom-category-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 5px;
	margin-left: 7px;
	background: #ffffff;
	border: 1px solid var(--border);
	border-radius: 10px;
	font-size: 12px;
	cursor: pointer;
	transition: all 0.2s;
	white-space: nowrap;
	color: #474d66;
}

.pom-category-btn:hover {
	background: var(--bg-light);
	border-color: var(--primary);
}

.pom-category-btn.active {
	background: var(--primary-dark);
	color: #fff;
	border-color: var(--primary-dark);
}

.pom-region-btn {
	background: #e8eaf6;
	border-color: #0e187b;
	color: #0e187b;
	font-weight: 500;
}

.pom-archive-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 15px;
	margin-top: 15px;
}
.pom-archive-title {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-content: center;
	gap: 5px;
}
.pom-archive-title h1 {
	font-size: 17px;
	font-weight: 400;
	color: var(--pom-menu-text);
	margin: 0;
}

.pom-toggle-btn {
	background: #fff;
	color: var(--primary-dark);
	border: 1px solid;
	border-radius: var(--radius);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 15px;
	font-size: 14px;
	transition: all 0.3s;
	gap: 5px;
}

.pom-toggle-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(14, 24, 123, 0.35);
}
.locations-grid {
	display: grid;
	gap: 15px;
	max-width: 28rem;
	margin: auto;
	padding: 15px 0px;
}

.pom-modern-card {
	background: #fff;
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #eaeff7;
	box-shadow: 0px 0px 10px rgb(164 196 246 / 10%);
}

.pom-modern-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.pom-card-image {
	position: relative;
	height: 160px;
	background: #f0f0f0;
	overflow: hidden;
}

.pom-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}



/* ===== Ø¨Ø±Ú†Ø³Ø¨ ØªØ§ÛŒÛŒØ¯ Ø´Ø¯Ù‡ Ø¯Ø± Ú©Ø§Ø±Øª Ø¢Ø±Ø´ÛŒÙˆ ===== */
.badge-verified {
    display: inline-block;
    background: #0e187b;
    color: #fff;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
    margin-top: 4px;
}

/* ===== Ø¨Ø±Ú†Ø³Ø¨ Ù…Ø­Ø¨ÙˆØ¨ Ø¯Ø± Ú©Ø§Ø±Øª Ø¢Ø±Ø´ÛŒÙˆ ===== */
.badge-popular {
    display: inline-block;
    background: #e4405f;
    color: #fff;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
    margin-top: 4px;
}

/* ===== Ø¢Ø±Ø§ÛŒØ´ Ø¨Ø±Ú†Ø³Ø¨â€ŒÙ‡Ø§ Ø¯Ø± Ú©Ù†Ø§Ø± Ù‡Ù… ===== */
.cat-fea-card {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
}
.cat-fea-card .featured,
.cat-fea-card .badge-verified,
.cat-fea-card .badge-popular {
    font-size: 10px;
    padding: 2px 10px;
    border-radius: 12px;
    color: #fff;
}
.featured {
    background-color: var(--bg-light);
    color: var(--primary) !important;
    padding: 4px 12px;
    font-size: 11px;
    z-index: 2;
    border-radius: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.pom-card-content {
	padding: 15px;
}

.pom-card-title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
	max-height: calc(1.6em * 2);
}

.pom-card-title a {
	color: #333;
	text-decoration: none;
}

.pom-card-address {
	font-size: 12px;
	color: var(--text-second);
	margin-bottom: 12px;
	display: flex;
	align-items: flex-start;
	gap: 5px;
}
.pom-card-address p{
	line-height: 1.4;
	max-height: calc(1.4em * 2);
}
.pom-card-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}

.pom-rating-stars {
	display: flex;
	direction: ltr;
	gap: 3px;
}

.pom-rating-stars .star-active {
	color: #ffb01f;
	font-size: 13px;
}

.pom-rating-stars .star-inactive {
	color: #ccc;
	font-size: 13px;
}

.pom-card-actions {
	display: flex;
	gap: 8px;
}

.pom-btn {
	flex: 1;
	padding: 8px 0;
	text-align: center;
	border-radius: 8px;
	font-size: 12px;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	cursor: pointer;
}

.pom-btn-primary {
	background: var(--primary-dark);
	color: #fff;
	border: none;
}

.pom-btn-outline {
	background: var(--bg-light);
	color: #3a43a1;
	border: none;
	cursor: pointer;
	font-size: 14px;
}
.leaflet-popup-content{
	font-family:'shabnam';
}
#pom-map-view { width: 100%; margin-top: 0; }
#pom-archive-map {
	width: 100%;
	height: 550px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
}

.custom-number-marker {
	background: var(--primary-dark);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 13px;
	font-weight: bold;
	border: 2px solid white;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.pom-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.6);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}

.pom-modal.active {
	opacity: 1;
	visibility: visible;
}




.pom-modal-number {
	display: block;
	background: #f8f9fa;
	color: #333;
	font-size: 18px;
	font-weight: bold;
	padding: 10px;
	border-radius: 8px;
	text-decoration: none;
	border: 1px dashed #ccc;
}

.pom-pagination {
	text-align: center;
	margin-top: 40px;
	margin-bottom: 15px;
}

.pom-pagination ul {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.pom-pagination li a,
.pom-pagination li span {
	display: inline-block;
	min-width: 36px;
	padding: 8px 14px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	color: #4a5568;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.2s ease;
}

.pom-pagination li a:hover,
.pom-pagination li .current {
	background: var(--primary);
	border-color: var(--primary);
	color: white;
}

.pom-search-not-found {
	text-align: center;
	padding: 60px 20px;
	background: #fff;
	border-radius: var(--radius-lg);
	border: 1px dashed var(--border);
}

.pom-search-not-found i {
	font-size: 64px;
	color: #ccc;
	margin-bottom: 20px;
}

.pom-search-not-found h3 {
	margin-bottom: 10px;
	color: var(--text);
}

.pom-search-not-found p {
	color: var(--text-second);
	margin-bottom: 20px;
}

.pom-search-not-found .pom-suggestion-list {
	list-style: none;
	padding: 0;
	margin: 20px 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.pom-search-not-found .pom-suggestion-list li {
	background: var(--bg-light);
	padding: 8px 15px;
	border-radius: 30px;
}

.pom-search-not-found .pom-suggestion-list li a {
	color: var(--primary);
	text-decoration: none;
}

/* Ø§Ø³ØªØ§ÛŒÙ„ ØªØµÙˆÛŒØ± Ù¾ÛŒØ´â€ŒÙØ±Ø¶ Ø¨Ø±Ø§ÛŒ Ú©Ø§Ø±Øªâ€ŒÙ‡Ø§ÛŒ Ø¢Ø±Ø´ÛŒÙˆ */

.pom-card-no-image {
    width: 100%;
    height: 160px;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 50%, #e8eaf6 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.pom-card-no-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(#ddd 1px, transparent 1px),
		linear-gradient(90deg, #ddd 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}
.pom-card-image a{
	text-decoration: none;
}
.pom-modern-card:hover .pom-card-no-image {
	background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
}

.pom-card-no-image i,
.pom-card-no-image .icon-location {
	font-size: 48px;
    color: #4a5568;
    transition: all 0.3s ease;
    z-index: 10;
}

.pom-modern-card:hover .pom-card-no-image i,
.pom-modern-card:hover .pom-card-no-image .icon-location {
	color: #0e187b;
	transform: scale(1.05);
}

@media (max-width: 768px) {
	.pom-card-no-image i, 
	.pom-card-no-image .icon-location{
		font-size: 36px;
	}
	
	.pom-live-search-input{
		font-size:12px;
		padding: 10px;
	}
	.pom-toggle-btn {
		padding: 7px;
		font-size: 12px;
		transition: all 0.3s;
		gap: 5px;
	}
	.pom-category-btn {
		font-size: 12px;
	}
	.pom-categories-slider {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.pom-categories-scroll {
		padding-bottom: 15px;
	}
	.locations-grid { grid-template-columns: 1fr; }
	#pom-archive-map { height: 350px; }
	.pom-search-sidebar {
		max-width: 84%;
	}
	.pom-search-card { min-width: 150px; }
	.pom-search-card-image { height: 100px; }
				.pom-breadcrumb {
		font-size: 11px;
		gap: 3px;
		margin: 5px;
		margin-top: 20px;
	}
	
	#pom-list-view{
		padding: 0 10px;
		padding-bottom: 10px;
	}
}

.pom-search-wrapper {
    width: 100%;
}

.pom-live-search-container {
    position: relative;
    width: 100%;
}
.pom-live-search-container::before {
    content: "\e94a"; 
    font-family: icomoon !important; 
    position: absolute;
    right: 12px;
	left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
    font-size: 18px;
    color: #94a3b8;
}

.pom-live-search-input {
    width: 100%;
    padding: 12px 15px;
	padding-right: 30px !important;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
	padding-right: 25px;

}

.pom-live-search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
}

/* Ø¯Ú©Ù…Ù‡ Ù†Ø²Ø¯ÛŒÚ© Ù…Ù† - Ø¯Ø§Ø®Ù„ Ø¨Ø§Ú©Ø³ Ùˆ Ø³Ù…Øª Ú†Ù¾ */

/* ==================== Ø¯Ú©Ù…Ù‡ Ù†Ø²Ø¯ÛŒÚ© Ù…Ù† ==================== */

.pom-near-me-btn {
    position: absolute;
    left: 8px;
    top: 50%;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 2;
	transform: translateY(-50%);
}

.pom-near-me-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
	box-shadow: 0 8px 20px rgba(14, 24, 123, 0.35);
	transform: translateY(-55%);
}
.pom-near-me-btn i.icon-location {
    font-size: 15px;
}
.cat-fea-card {
    position: absolute;
    top: 5px;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pom-card-category{
margin:0;
}
@media (max-width: 768px) {
    .pom-live-search-input {
        font-size: 12px;
        padding: 10px 12px;
		padding-right: 30px;
    }
    
    .pom-near-me-btn {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .pom-near-me-btn span {
        display: inline; /* ÛŒØ§ Ù…ÛŒØªÙˆÙ†ÛŒØ¯ Ø¨Ø°Ø§Ø±ÛŒØ¯ none Ú©Ù‡ ÙÙ‚Ø· Ø¢ÛŒÚ©ÙˆÙ† Ø¨Ù…ÙˆÙ†Ù‡ */
    }
}


/* ==================== Ø§Ø³ØªØ§ÛŒÙ„ Ú©Ø§Ù†ØªÛŒÙ†Ø± ØªØ¨Ù„ÛŒØºØ§Øª ==================== */


/* Ø§ÙÚ©Øª Ù‡Ø§ÙˆØ± */
.pom-ad-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #0e187b;
}

/* Ù…Ø­ØªÙˆØ§ÛŒ Ø¯Ø§Ø®Ù„ÛŒ ØªØ¨Ù„ÛŒØº */
.pom-ad-container .pom-ad-item {
    padding: 20px;
    text-align: center;
}

/* Ø§Ø³ØªØ§ÛŒÙ„ Ù„ÛŒÙ†Ú© ØªØ¨Ù„ÛŒØº */
.pom-ad-container a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pom-ad-container a:hover {
    opacity: 0.9;
}

/* Ø§Ø³ØªØ§ÛŒÙ„ ØªØµÙˆÛŒØ± ØªØ¨Ù„ÛŒØº */
.pom-ad-container img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pom-ad-container img:hover {
    transform: scale(1.02);
}

/* Ø§Ø³ØªØ§ÛŒÙ„ ØªØ¨Ù„ÛŒØº Ù…ØªÙ†ÛŒ (HTML) */
.pom-ad-container .pom-ad-html {
    font-size: 14px;
    line-height: 1.6;
}

/* Ø¯Ú©Ù…Ù‡ Ø¨Ø³ØªÙ† ØªØ¨Ù„ÛŒØº (Ø§Ø®ØªÛŒØ§Ø±ÛŒ) */
.pom-ad-close {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    z-index: 10;
}

.pom-ad-close:hover {
    background: #dc3232;
    transform: scale(1.1);
}

/* ØªØ¨Ù„ÛŒØº ÙˆÛŒÚ˜Ù‡ (Ù…Ø«Ù„Ø§Ù‹ Ù¾Ø±ÛŒÙ…ÛŒÙˆÙ…) */
.pom-ad-container.premium {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border-color: #ffc107;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.pom-ad-container.premium:hover {
    border-color: #ff9800;
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.25);
}

/* ØªØ¨Ù„ÛŒØº ÙˆÛŒÚ˜Ù‡ Ø¨Ø§ Ø¨Ø±Ú†Ø³Ø¨ */
.pom-ad-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #0e187b;
    color: white;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 30px;
    font-weight: 500;
    z-index: 10;
}

/* Ø±ÛŒØ³Ù¾Ø§Ù†Ø³ÛŒÙˆ */
@media (max-width: 768px) {
    .pom-ad-container {
        margin: 20px 0;
    }
    
    .pom-ad-container .pom-ad-item {
        padding: 15px;
    }
    
    .pom-ad-badge {
        font-size: 9px;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .pom-ad-container {
        margin: 15px 0;
    }
    
    .pom-ad-container .pom-ad-item {
        padding: 10px;
    }
}


.pom-empty-state {
    text-align: center;
    padding: 50px 20px;
    background: #fff;
    border-radius: 16px;
    margin: 30px 0;
}

.pom-empty-state i {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 20px;
}

.pom-empty-state h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.pom-empty-state p {
    color: #666;
    margin-bottom: 20px;
	font-size: 15px;
}

.pom-empty-state a {
    background: var(--primary-dark);
    color: #fff;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 8px;
    transition: 0.3s;
	font-size: 17px;
}

.pom-empty-state a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

	/* ==================== Ø§Ø³ØªØ§ÛŒÙ„ ØªØ§Ø±ÛŒØ®Ú†Ù‡ Ù…Ú©Ø§Ù†â€ŒÙ‡Ø§ÛŒ Ø¨Ø§Ø²Ø¯ÛŒØ¯ Ø´Ø¯Ù‡ ==================== */
.pom-history-locations-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Ù†Ù…Ø§ÛŒØ´ Û² Ø³ØªÙˆÙ†Ù‡ Ø¯Ø± Ù‡Ø± Ø³Ø·Ø± */
.pom-history-grid-2cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.pom-history-location-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
    position: relative;
	max-width: 210px;
}

.pom-history-location-card:hover {
    background: #e5e8ff;
    border-color: #0e187b;
    transform: translateY(-2px);
}

.pom-history-location-content {
    flex: 1;
    overflow: hidden;
}

.pom-history-location-title {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pom-history-location-address {
    font-size: 10px;
    color: #64748b;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pom-history-location-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
}

.pom-history-location-rating .stars {
    display: flex;
    gap: 2px;
    direction: ltr;
}

/* Ø¯Ú©Ù…Ù‡ Ø­Ø°Ù ØªÚ©ÛŒ Ø¯Ø± Ú¯ÙˆØ´Ù‡ Ú©Ø§Ø±Øª */
.pom-history-remove-btn {
    background: #ef4444;
    color: white;
    border: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-right: 8px;
}

.pom-history-remove-btn:hover {
    background: #dc2626;
    transform: scale(1.1);
}

/* Ø¯Ú©Ù…Ù‡ Ù¾Ø§Ú© Ú©Ø±Ø¯Ù† Ù‡Ù…Ù‡ Ø¯Ø± Ù‡Ø¯Ø± */
.pom-clear-history-icon {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 20px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pom-clear-history-icon:hover {
    background: #fef2f2;
    color: #dc2626;
}

/* Ø±ÛŒØ³Ù¾Ø§Ù†Ø³ÛŒÙˆ Ø¨Ø±Ø§ÛŒ Ù…ÙˆØ¨Ø§ÛŒÙ„ - ØªÚ© Ø³ØªÙˆÙ†Ù‡ */
@media (max-width: 600px) {
    .pom-history-grid-2cols {
		grid-template-columns: repeat(2, 1fr);
	}
	.pom-history-location-card{
		max-width: 150px;
	}
}


/* ==================== Ù…ÙˆØ¯Ø§Ù„ ØªÙ…Ø§Ø³ ==================== */
.pom-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
	z-index: 100000;
	align-items: center;
	justify-content: center;
	display: none; /* ØªØºÛŒÛŒØ± Ø§Ø² opacity/visibility Ø¨Ù‡ display */
	transition: all 0.3s ease;
}

.pom-modal.active {
	display: flex; /* Ù†Ù…Ø§ÛŒØ´ Ø¨Ø§ flex */
}

.pom-modal-content {
	overflow: hidden;
	animation: modalSlideIn 0.3s ease;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	background: #fff;
	padding: 10px;
	border-radius: 16px;
	width: 90%;
	max-width: 400px;
	text-align: center;
	position: relative;
}
@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: translateY(30px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* Ù‡Ø¯Ø± Ù…ÙˆØ¯Ø§Ù„ */

.pom-modal-header {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px;
	color: var(--pom-menu-primary-dark);
	border-radius: var(--radius);
}

.pom-modal-header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid var(--border);
}
.pom-modal-header h4 {
	margin: 0;
	font-size: 15px;
	font-weight: 500;
}

.pom-modal-header h4 span {
	font-weight: 700;
}

.pom-close-btn {
	border: none;
	font-size: 35px;
	cursor: pointer;
	color: #0a1157;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	line-height: 1;
	font-weight: 700;
}

.pom-close-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: rotate(90deg);
}

/* Ø¨Ø¯Ù†Ù‡ Ù…ÙˆØ¯Ø§Ù„ */
.pom-modal-body {
	padding: 15px;
	text-align: center;
}

.pom-modal-icon img{
	max-width: 110px;
}
.pom-modal-icon {
	margin-bottom: 30px;
}

.pom-modal-icon i {
	font-size: 56px;
	color: #0e187b;
	background: #e8eaff;
	width: 100px;
	height: 100px;
	line-height: 100px;
	border-radius: 50%;
	display: inline-block;
}

.pom-modal-message {
	font-size: 14px;
	color: #475569;
	line-height: 1.7;
	margin: 0 0 35px 0;
	padding: 0 5px;
}

.pom-modal-message strong {
	color: #0e187b;
}

.pom-modal-message span {
	color: #0e187b;
	font-weight: 600;
}

/* Ø¯Ú©Ù…Ù‡â€ŒÙ‡Ø§ÛŒ Ø´Ù…Ø§Ø±Ù‡ ØªÙ…Ø§Ø³ */
.pom-phone-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}

.pom-phone-btn {
	flex: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #0e187b;
	color: white;
	text-decoration: none;
	padding: 14px 20px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	min-width: 180px;
}

.pom-phone-btn:hover {
	background: #3a43a1;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(14, 24, 123, 0.3);
}

.pom-phone-btn i {
	font-size: 18px;
}

.pom-copy-btn {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #f1f5f9;
	color: #0e187b;
	border: 1px solid #e2e8f0;
	padding: 14px 18px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.pom-copy-btn:hover {
	background: #e8eaff;
	border-color: #0e187b;
	transform: translateY(-2px);
}

.pom-copy-btn i {
	font-size: 16px;
}

/* Ø­Ø§Ù„Øª Ø¨Ø¯ÙˆÙ† Ø´Ù…Ø§Ø±Ù‡ */
.pom-phone-btn.disabled,
.pom-phone-btn.disabled:hover {
	background: #e2e8f0;
	color: #94a3b8;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

/* Ø±ÛŒØ³Ù¾Ø§Ù†Ø³ÛŒÙˆ */
@media (max-width: 480px) {
	.pom-modal-body {
		padding: 25px 20px 30px;
	}
	
	.pom-modal-icon i {
		font-size: 42px;
		width: 80px;
		height: 80px;
		line-height: 80px;
	}
	
	.pom-modal-message {
		font-size: 13px;
	}
	
	.pom-phone-actions {
		flex-direction: column;
	}
	
	.pom-phone-btn,
	.pom-copy-btn {
		width: 100%;
		justify-content: center;
	}
}

.custom-number-marker {
	font-family:'Shabnam';
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.custom-number-marker span {
    transform: rotate(45deg);
    display: inline-block;
    font-family: 'Shabnam', 'Vazir', Tahoma, sans-serif;
    font-size: 13px;
    font-weight: 400;
    direction: ltr;
}
div[style*="bottom: 8px"][style*="left: 15px"] {
  display: none !important;
}
#pom-archive-map > div:last-child {
  display: none !important;
}

/* ==================== Ù…ÙˆØ¯Ø§Ù„ Ù†Ø²Ø¯ÛŒÚ© Ù…Ù† ==================== */
.pom-nearme-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100000;
    align-items: center;
    justify-content: center;
}

.pom-nearme-modal.active {
    display: flex;
}

.pom-nearme-modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    min-height: 70vh;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.pom-nearme-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #0e187b 0%, #3a43a1 100%);
    color: white;
}

.pom-nearme-modal-header h3 {
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pom-nearme-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.pom-nearme-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.pom-nearme-modal-body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.pom-nearme-desc {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.pom-nearme-neighborhoods-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.pom-loading {
    text-align: center;
    padding: 30px;
    color: #94a3b8;
    grid-column: 1 / -1;
}

.pom-no-neighborhoods {
    text-align: center;
    padding: 30px;
    color: #94a3b8;
    grid-column: 1 / -1;
}

.pom-no-neighborhoods i {
    font-size: 48px;
    margin-bottom: 10px;
    display: block;
}



/* ==================== Ù…ÙˆØ¯Ø§Ù„ Ù†Ø²Ø¯ÛŒÚ© Ù…Ù† ==================== */
.pom-nearme-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100000;
    align-items: center;
    justify-content: center;
}

.pom-nearme-modal.active {
    display: flex;
}

.pom-nearme-modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.pom-nearme-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #0e187b 0%, #3a43a1 100%);
    color: white;
}

.pom-nearme-modal-header h3 {
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pom-nearme-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.pom-nearme-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.pom-nearme-modal-body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.pom-nearme-desc {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.pom-nearme-neighborhoods-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.pom-neighborhood-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
}

.pom-neighborhood-item:hover {
    background: #e0e7ff;
    border-color: #0e187b;
    transform: translateY(-2px);
}

.pom-loading {
    text-align: center;
    padding: 30px;
    color: #94a3b8;
    grid-column: 1 / -1;
}

.pom-no-neighborhoods {
    text-align: center;
    padding: 30px;
    color: #94a3b8;
    grid-column: 1 / -1;
}

.pom-no-neighborhoods i {
    font-size: 48px;
    margin-bottom: 10px;
    display: block;
}

@media (max-width: 480px) {
    .pom-near-me-btn {
        padding: 5px;
    }
    
}


  /* ØªØ¹Ø±ÛŒÙ Ø§Ù†ÛŒÙ…ÛŒØ´Ù† business-pulse Ø¨Ø§ Ø­Ø§Ù„Øª Ø²ÙˆÙ… Ùˆ ease-out */
  @keyframes business-pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05); /* Ø­Ø¯Ø§Ú©Ø«Ø± Ø²ÙˆÙ… */
    }
    100% {
      transform: scale(1);
    }
  }

  /* Ú©Ù„Ø§Ø³ Ú©Ù…Ú©ÛŒ Ø¨Ø±Ø§ÛŒ Ø§Ù†ÛŒÙ…ÛŒØ´Ù† (Ø§Ø®ØªÛŒØ§Ø±ÛŒ) */
  .content-ads {
    animation: business-pulse 2s ease-in-out infinite;
    background: var(--second-color);
    color: #fff;
    display: flex;
    padding: 10px;
    border-radius: 7px;
    justify-content: space-around;
    align-items: center;
    text-decoration: none; /* Ø¨Ø±Ø§ÛŒ Ù„ÛŒÙ†Ú© Ø¨Ù‡ØªØ±Ù‡ Ø­Ø°Ù Ø¨Ø´Ù‡ ÛŒØ§ ØªÙ†Ø¸ÛŒÙ… Ø¨Ø´Ù‡ */
    transition: all 0.2s ease; /* Ø¨Ø±Ø§ÛŒ Ù‡Ø§ÙˆØ± Ù‡Ù… Ù†Ø±Ù… Ø¨Ø§Ø´Ù‡ */
  }

  .content-ads:hover {
    animation-play-state: paused; /* ÙˆÙ‚ØªÛŒ Ù…ÙˆØ³ Ù…ÛŒØ±Ù‡ Ø±ÙˆØ´ Ø§Ù†ÛŒÙ…ÛŒØ´Ù† Ù…ØªÙˆÙ‚Ù Ù…ÛŒØ´Ù‡ */
    transform: scale(1.02);
  }

  /* Ø¢ÛŒÚ©ÙˆÙ† Ùˆ Ù…ØªÙ†â€ŒÙ‡Ø§ Ø±Ùˆ Ù‡Ù… Ù…ÛŒØªÙˆÙ†ÛŒØ¯ ØªÙ†Ø¸ÛŒÙ… Ú©Ù†ÛŒØ¯ */
  .font-regular {
    margin: 0;
    font-weight: 400;
  }

  .icon-chevron-left {
    display: inline-block;
  }

