.nd-directory { font-family: inherit; }

.nd-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.nd-filters input,
.nd-filters select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}
.nd-search-input { flex: 1; min-width: 200px; }

.nd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.nd-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: box-shadow .2s, transform .2s;
}
.nd-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    transform: translateY(-2px);
}
.nd-card-logo img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}
.nd-card-logo-placeholder {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    font-size: 40px;
}
.nd-card-body { padding: 12px 14px; }
.nd-card-title { margin: 0 0 8px; font-size: 16px; }
.nd-card-address,
.nd-card-phone,
.nd-card-rating {
    margin: 4px 0;
    font-size: 13px;
    color: #555;
}

.nd-no-results { text-align: center; padding: 30px; color: #888; }

.nd-pagination { text-align: center; margin-top: 20px; }

/* صفحه تکی */
.nd-single-header { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; }
.nd-single-logo img { width: 100px; height: 100px; object-fit: cover; border-radius: 10px; }
.nd-badge {
    display: inline-block;
    background: #f0f0f0;
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 12px;
    margin-inline-end: 6px;
}
.nd-single-info p { margin: 8px 0; }
.nd-single-map { margin-top: 20px; border-radius: 10px; overflow: hidden; }
